.title-text {
    top: 15%;
}

.website-text {
    color: white;
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 0.0em;
    font-family: 'IBM Plex Mono', monospace;
}

h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    /* background-color: var(--mint-cream); */
}

.coming-soon-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    overflow: hidden;
    /* Add a slight scale to prevent white edges */
    transform: scale(1.1);
}

.coming-soon-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.logo-container {
    top: 50%;
}


.logo {
    max-width: 200px
}


.logo-text {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.logo-text-sub {
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: 0.0em;
    font-family: 'Poppins', sans-serif;
    color: white;
}

.contact-container {
    top: 80%;
}

.contact-heading {
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
}

.contact-info {
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

.social-icon {
    width:  25px;
    height: 25px;
}

@media (max-width: 367px) {

    .contact-heading {
        font-size: .9rem;
    }

    .contact-info {
        font-size: 0.85rem;
    }
}

@media (max-width: 407px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .contact-heading {
        font-size: .95rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }

    .social-icon {
        width:  20px;
        height: 20px;
    }
}
@media (max-width: 576px) {
    .coming-soon-image {
        height: 100vh;
        width: auto;
        min-width: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 700px) {
    h1 {
        font-size: 4rem;
    }
}

.subtle-move {
    animation: subtleShift 20s ease-in-out infinite alternate;
    transform: scale(1.1) translateZ(0); /* Scale up and enable GPU acceleration */
}

@keyframes subtleShift {
    0% {
        transform: scale(1.0) translate(0px, 0px);
    }
    50% {
        transform: scale(1.1) translate(10px, -5px);
    }
    100% {
        transform: scale(1.12) translate(5px, -10px);
    }
}