* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #f2f2f2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    position: relative;
    background: #fffdf4;
    width: 100%;
    /*max-width: 1200px;*/
    /*min-height: 600px;*/
    height: 100vh;
    /*padding: 60px 40px;*/
    padding: 3.75rem 2.5rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo */
.logo {
    height: 24px;
    margin-bottom: 60px;
}

/* Title */
h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #000;
}

.mt-auto {margin-top: auto}
.mt-5 {margin-top: 5%}
.mb-auto {margin-bottom: auto}

.z1 {z-index: 1;}

/* Description */
.description {
    /*max-width: 560px;*/
    max-width: 75%;
    margin: 0 auto 32px;
    font-size: 24px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

/* Social Icons */
.socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.socials img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
}

.socials a:hover img {
    transform: scale(1.15);
}

/* Smile + Star Decoration */
.smile-decoration {
    position: absolute;
    /*left: -120px;*/
    /*bottom: -120px;*/
    left: -0px;
    bottom: 0px;
    /*width: 420px;*/
    pointer-events: none;
}

/* Smile + Star Decoration */
.smile-decoration-gx {
    position: absolute;
    /*left: -120px;*/
    /*bottom: -120px;*/
    /*left: -0;*/
    /*bottom: 0;*/
    pointer-events: none;
    left: -12%;
    bottom: -16%;
    width: 40%;
}

/* Responsive */
@media (max-width: 772px) {
    h1 {
        font-size: 36px;
    }

    .description {
        font-size: 14px;
        max-width: 100%;
    }

    .smile-decoration {
        width: 300px;
        left: -100px;
        bottom: -100px;
    }

    .smile-decoration-gx {
        /*left: -32%;*/
        /*bottom: -8%;*/
        /*width: 100%;*/
        left: -12%;
        bottom: -16%;
        width: 75%;
    }
}


/* Mobile */
@media (max-width: 425px) {
    .smile-decoration {
        width: 300px;
        left: -100px;
        bottom: -100px;
    }

    .smile-decoration-gx {
        left: -32%;
        bottom: -8%;
        width: 100%;
    }
}
