body {
    margin: 0;
    background: url('img/fotos-cartel-2.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding-top: 100px; /* Espacio para el menú */
    box-sizing: border-box;
    text-align: center;
    width: 100%;
}
.img1, .img2, .img-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.img1 {
    margin-top: 50px;
}
.img1 img{
    width: 100%;
    max-width: 150px;
}
@media (min-width:768px){
    .img1 img{
        max-width: 250px;
    }
    .img1 {
    margin-top: 150px;
}
}
.img2 img{
    width: 100%;
    max-width: 350px;
}
@media (min-width:768px){
    .img2 img{
        max-width: 500px;
    }
}
@media (min-width:992px){
    .img2 img{
        max-width: 600px;
    }
}
@media (min-width:1400px){
    .img2 img{
        max-width: 800px;
    }
}
.img-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
}
@media (min-width:552px){
    .img-row {
        flex-direction: row;
    }
}

.img-row a {
    flex: 0 0 50%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;

}

.img-row img {
    width: 100%;
    height: auto;
    display: block;
    max-width: 250px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: block;
}
@media (min-width:768px){
    .img-row img {
        max-width: 300px;
    }
}
@media (min-width:1400px){
    .img-row img {
        max-width: 500px;
    }
}

/* Menú superior */
.top-menu, .top-menu ul, .top-menu li, .top-menu a {
    font-family: 'Jerk Chicken BT W01 Regular', sans-serif;
}

.top-menu {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    margin: 0;
    padding: 20px 0 0 0;
    z-index: 10;
}

.top-menu ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #000;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.top-menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2em;
    padding: 12px 24px;
    display: block;
    border-radius: 30px;
    transition: background 0.2s, color 0.2s;
}

.top-menu li a:hover,
.top-menu li a:focus {
    background: #fff;
    color: #000;
}
