.opening h1,
.opening h2 {
    font-size: 44px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 20px;
}

.temp_block {
    margin-bottom: 96px;
}

.temp_opening {
    padding-bottom: 96px;
}

.opening p {
    width: 600px;
    margin: 0 auto 35px;
    text-align: center;
}

.opening p {
    margin-bottom: 0;
}

.opening .buttons_container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 30px auto 0;
}

.opening .buttons_container .button,
.opening .buttons_container .button_2 {
    margin-right: 25px;
}

.opening .buttons_container .button_2:last-of-type {
    margin-right: 0;
}

.opening li a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: var(--black);
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
}

.opening li a:hover {
    opacity: 0.7;
    transition: all 0.2s ease-in-out;
}

.opening li a i {
    margin-right: 10px;
}

.christmas_block {
    padding-bottom: 96px;
}

.christmas_notice {
    background-color: rgba(67, 119, 187, 0.3);
    border: 2px solid var(--light-blue);
    color: var(--light-blue);
    font-weight: 700;
    box-sizing: border-box;
    padding: 22px 30px;
    width: 580px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.christmas_notice p {
    width: max-content;
    font-weight: 700;
}

@media (max-width: 800px) {
    .temp_block {
        margin-bottom: 86px;
    }
}

@media (max-width: 680px) {
    .opening p {
        width: 500px;
    }

    .christmas_notice {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .opening h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .opening p {
        width: 100%;
    }
    
    .opening .buttons_container {
        flex-direction: column;
    }

    .opening .buttons_container .button,
    .opening .buttons_container .button_2 {
        margin: 0 auto 25px;
    }

    .opening .buttons_container .button_2:last-of-type {
        margin-right: auto;
        margin-bottom: 0;
    }

    .opening .buttons_container .button,
    .opening .buttons_container .button_2 {
        width: 100%;
    }
}