* {
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

html {
    font-size: 24px;
}

body, p, h1, h2, h3 {
    margin: unset;
}

body {
    font-family: "Great Vibes", cursive;
    font-weight: 400;
    font-style: normal;
    color: #09373d;
    background-image: url("/bg.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeIn 1s forwards;
}


.welcome__title {
    margin-top: 10px;
    font-size: 1.5rem;
}

.welcome__title--main {
    font-family: Arial, sans-serif;
    margin-top: 60px;
    margin-bottom: 40px;
    font-size: 2rem;
}

.welcome__title--names {
    font-family: Cambria, serif;
    font-size: 3.5rem;
    padding: 0;
    letter-spacing: -30px;
    margin-left: -30px;
    line-height: 1;
}

.welcome__title--date {
    font-family: Arial, sans-serif;
    margin-top: 70px;
    font-size: 1.5rem;
}

.section {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 30px;
    /*opacity: 0;*/
    /*animation: fadeIn 1s forwards;*/
    min-height: 400px
}

.section__text {
    position: relative;
    padding: 15px 15px 20px 110px;
    transform: rotate(-11deg);
    width: 68%;
    margin: 100px auto;
}

.section__img {
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 50px;
    left: 0;
}


.highlight {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 0;
    font-weight: 400;
}

.button {
    display: inline-block;
    background-color: #0d565f;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
}

.list {
    padding-left: 20px;
}

.contacts {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 15px;
}

.section-4__title {
    padding-top: 15px;
    padding-bottom: 15px;
}

.contacts__list {
    padding-top: 15px;
    line-height: 1.25;
    margin-top: 0px;
    display: flex;
    gap: 16px;
}

.contacts__list img {
    width: 36px;
}


/* Анимации */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.delay-1 {
    animation-delay: 0.5s;
    background-image: url('/slide 1.jpg');
    min-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.delay-2 {
    animation-delay: 1s;
    background-image: url('/invite_2.jpg');
}

.delay-3 {
    animation-delay: 1.5s;
    background-image: url('/slide_3.jpg');
}

.delay-4 {
    animation-delay: 2s;
    background-image: url('/slide_4.jpg');
    min-height: 370px;
}

.delay-5 {
    animation-delay: 2.5s;
    background-image: url('/slide_5.jpg');
}

.delay-6 {
    animation-delay: 3s;
}

.section-5__inner {
    width: 70%;
    padding-left: 35px;
}

.ps {
    margin-top: 60px;
}

.section-4__inner {
    width: 60%;
    margin-left: auto;
}

.section-3__inner {
    width: 60%;
}

.address {
    margin: 16px 0;
}

.invite-text {
    margin-top: 5px;
}

.invite-ps {
    text-align: right;
    padding-right: 20px;
}

@media (max-width: 600px) {

    .section {
        padding: 16px;
    }

    .welcome__title--header {
        padding: 0 40px;
    }

    .delay-1 {
        height: 100dvh;
        padding: 20% 0;
    }

    .delay-2 {
        height: 370px;
        min-height: unset;
    }

    .delay-3, .delay-4, .delay-5 {
        height: max-content;
    }

    .section-3__inner {
        width: 70%;
    }

    .contacts {
        flex-direction: column;
    }

    .welcome__center {
        margin: auto;
    }

    .section__text {
        width: 50%;
        font-size: 14px;
        margin: 60px 0 0 140px;
        padding: unset;
        transform: rotate(-8deg);
    }

    .invite-ps {
        padding: unset;
    }

    .section__img {
        position: absolute;
        width: 80px;
        height: 80px;
        bottom: 0;
        left: -85px;
    }
}

