@font-face {
    font-family: 'Involve';
    src: url('fonts/Involve-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
}

.social-icons img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.prev, .contact {
    font-family: 'Involve', Arial, sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 55.86px;
    text-align: left;
    text-decoration: none;
    color: #000;
}

.production_agency {
    display: none;
}

.shows {
    font-family: 'Involve', Arial, sans-serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 66.5px;
    text-align: left;
}

.shows_logo {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    height: 250px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }

    .prev, .contact {
        font-size: 36px;
        line-height: 48px;
    }

    .shows {
        font-size: 40px;
        line-height: 53.2px;
    }

    .shows_logo img {
        width: 200px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px !important;
    }

    .social-icons img {
        width: 24px !important;
        height: 24px !important;
        margin: 0 5px !important;
    }

    .prev, .contact {
        font-size: 28px !important;
        line-height: 38px !important;
    }

    .shows {
        font-size: 30px !important;;
        line-height: 40px !important;
    }

    .shows_logo {
        flex-direction: column !important;
        height: auto !important;
    }

    .shows_logo img {
        width: 150px !important;
        height: auto !important;
        margin: 10px 0 !important;
    }
}