body {
    background-color: #D35220;
    background-image: url('../img/line.png');
    background-repeat: repeat;
    background-size: auto;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
    height: 100vh;
    min-height: 842px;
}
a {
    text-decoration: none;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pix.png') repeat;
    opacity: 0.6;
    z-index: -2;
}

.background-men {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 524px;
    min-width: 217px;
    width: 30vw;
    height: 100%;
    background: url('../img/men.png') no-repeat bottom left;
    background-size: contain;
    z-index: -1;
}

.background-wom {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 585px;
    min-width: 238px;
    width: 30vw;
    height: 100%;
    background: url('../img/wom.png') no-repeat bottom right;
    background-size: contain;
    z-index: -2;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 75px 0 75px
}

.header-logo {
    height: 41px;
}

.header-button {
    width: 158px;
    height: 48px;
    background-image: url('../img/btnd.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff00;
    border: none;
    cursor: pointer;
    transition: background-image 0.3s ease;
    padding: 0;
    outline: none;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-button:hover {
    background-image: url('../img/btnh.svg');
}

.header-button:active {
    background-image: url('../img/btnp.svg');
}

main {
    text-align: center;
    padding: 30px 20px;
}

.event-logo {
    max-width: 100%;
    height: auto;
}

.event-date {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 20px 0 0 0;
}

.event-description  {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255);
    margin: 0px 0 20px 0;
}

.event-tagline {
    font-family: 'Recursive', sans-serif;
    font-size: 92px;
    font-style: italic;
    font-weight: 900;
    color: white;
    text-shadow: 0px 1px 3px #03102D66;
    margin: 0px 0;
    text-transform: uppercase;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 0px;
}

.clickable-image {
    max-width: 316px;
    min-width: 158px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.clickable-image:hover {
    transform: scale(1.1);
}
@media (max-width: 1600px) {
    body::after,
    header::after {
        width: 25vw;
        
    }
}

@media (max-width: 1200px) {
    body::after,
    header::after {
        width: 25vw;
        
    }
    .event-date {
        font-size: 22px;
    }
    .event-description  {
        font-size: 22px;
    } 
    .event-tagline {
        font-size: 66px; 
    }
    .clickable-image {
        width: 210px;
        height: auto;
    }
    header {
        padding: 50px 20px 0 20px
    }
    
}


@media screen and (max-width: 768px) {
    body {
        height: 100vh;
        min-height: 842px;
    }
    body::after,
    header::after {
        width: 55vw;
        
    }
    .header-logo {
        height: 28px;
    }
    .main-content {
        margin-bottom: 150px; /* Отступ для размещения изображений ниже */
    }
    .event-logo {
        max-width: 64px;
        height: auto;
    }
    .event-date {
        font-size: 14px;
    }
    .event-description  {
        font-size: 14px;
    } 
    .event-tagline {
        font-size: 32px; 
    }
    .clickable-image {
        width: 158px;
        height: auto;
    }
}
