body {
    background: no-repeat url("FONS.jpg");
    background-size: cover;
    background-color: #f6e2cf;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    overflow: hidden;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
}

.header {
    flex: 5;
}

.title {
    width: 100%;
}

.band {
    width: 100%;
}

.city img {
    width: 100%;
}

.info {
    position: relative;
}

.container {
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    max-width: fit-content;
    padding: 20px;
}

@media (min-width: 1000px) {

    .info {
        flex: 4;
    }

    .biletes {
        position: absolute;
        top: -40px;
        height: 40px;
        left: 0;
    }

    .biletes img {
        height: 100%;
    }

    .content {
        height: 100%;
        min-width: 900px;
        max-width: 70vw;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 5vh 0;
        gap: 5%;
    }

    .cities {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(4, 1fr);
        grid-template-columns: 3fr 2fr;
        align-items: center;
        row-gap: 10px;
        column-gap: 30px;
    }

    .city:nth-child(2) {
        position: relative;
        left: 20%;
        width: 85%;
    }

    .city:nth-child(3) {
        position: relative;
        left: 40%;
    }

    .city:nth-child(4) {
        position: relative;
        left: 20%;
        width: 85%;
    }

    .city a img {
        transition: transform 0.2s ease-in-out;
    }

    .city a:hover img {
        transform: scale(1.1);
    }
}

@media (max-width: 1000px) {
    .biletes {
        position: absolute;
        top: -20%;
        width: 15%;
        left: 0;

    }

    .biletes img {
        width: 100%;
    }

    .container {
        max-width: 63vh;
    }

    .header {
        flex: 0;
    }

    .content {
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        box-sizing: border-box;
    }

    .cities {
        flex: 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        justify-items: center;
        gap: 10px;
        width: 100%;
    }

    .city {
        grid-column: span 2;
    }

    .city a img {
        animation: pulse 2s infinite;
    }

    .city:nth-child(2) {
        margin-top: 10%;
        width: 85%;
    }

    .city:nth-child(4) {
        grid-column: 2 / span 2;
        width: 85%;
    }

    .city:nth-child(5) {
        grid-column: 4 / span 2;
        position: relative;
        margin-top: 5%;
        right: -10%;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}
