* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-size: 1.6rem;
    height: 100vh;
    background: linear-gradient(to right, #d6eff5, #e6f2d9);
    font-family: 'Merriweather', 'Inter', sans-serif;
    position: relative;
}

.main-section{
    display: grid;
    grid-template-rows: 0 auto auto;
    position: relative;
    height: 100%;
    row-gap:1rem;
}

/* TOP LOGO BACKGROUND */
.top-logo {
    content: url('/assets/Top Logo.webp');
    position: relative;
    /* top: 12rem;
    right: 8rem; */
    justify-self: end;
    /* opacity: 70%; */
    width: 20%;
}

/* BOTTOM LOGO BACKGROUND */
.bottom-container {
    display: flex;
    align-self: end;
    align-items: start;
}
.bottom-logo {
    content: url('/assets/Logo Bottom.webp');
    position: relative;
    width: 30%;
    /* opacity: 0.7; */
}

/* LOGO DESIGN ANIMATION */
.main-logo {
    max-width: 40rem;
    opacity: 100;
    animation: 3s cubic-bezier(0.075, 0.82, 0.165, 1) forwards slide-in;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateY(-150%);
    }

    50% {
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
    }
}

.home-section {
    padding-top: 10rem;
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 2.5em;
    justify-content: center;
    justify-items: center;
    align-items: start;
}

.coming-soon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5rem;
    background-color: white;
    padding: 4rem 8rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.14);
    animation: scale-up 1.5s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    /* z-index: 2; */
}

@keyframes scale-up {
    from {
        opacity: 0.9;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.coming-soon-title {
    font-size: 12.6rem;
    font-weight: bold;
    color: #af6e52;
    margin-bottom: 2rem;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    animation: text-animation 1.5s 0.3s backwards steps(20);
}

@keyframes text-animation {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.coming-soon-paragraph {
    font-family: inherit;
    font-size: 3rem;
    font-weight: normal;
    text-align: center;
    color: #7f4e39;
    margin-bottom: 4rem;
}

.assistance {
    font-size: 2.4rem;
    text-align: center;
    font-family: inherit;
    font-style: italic;
    color: #7f4e39;
    font-weight: lighter;
}

.email {
    color: #0e9ab8;
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body{
    background: linear-gradient(to right, #1e3d3b, #2c4f3a);
    }

    .coming-soon-section {
        background: #343a40;
    }

    .coming-soon-title {
        font-size: 12.6rem;
        font-weight: bold;
        color: #e1c39b;
    }

    .coming-soon-paragraph {
        color: #e1c39b;
    }
    
    .assistance {
        color: #e1c39b;
    }

    
}
