*{
    padding: 0;
    margin: 0;
}

body, html {
    height: 100%;
    font-family: 'Asty';
    overflow-x: hidden;
}

.full-height {
    height: 100vh;
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-direction: column;
}

.logo-area{
    width: 100vw;
    border-bottom: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    margin: 30px 0px 25px -20px;
}

.main-text{
    text-align: center;
    font-size: 60px;
    font-weight: bold;
    padding: 0 10px;
    margin: 20px 0 20px 0;
}

.description{
	max-width: 960px;
    margin: 0 auto;
    margin-bottom: 15px;
    padding: 0 10%;
    font-size: 17px;
    line-height: 1.3em;
}

.coming-soon-area{
    width: 100vw;
    background-color: purple;
}

.coming-soon{
    font-size: 30px;
    font-weight: 600;
    padding: 25px 0;
	color: white;
    white-space: nowrap;
    animation: moveRight 30s linear infinite; /* Adjust animation duration as needed */
    animation-delay: -15s;
    transform: translateX(-100%);
}

.cs-spacing{
    padding-right: 30px;
}

@keyframes moveRight {
    0% {transform: translateX(100%);}
    100% {transform: translateX(-100%);}
}

.footer-area{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-link{
    color: black;
    text-decoration: none;
    font-size: 18px;
    padding: 80px 0px 35px 0px;
}

@media (max-width: 768px) {
    .main-text{
        font-size: 70px;
        line-height: 1.3em;
    }

    .logo{
        margin: 30px 0px 25px -5px;
    }
}

@media (max-width: 576px) {
    .main-text{
        font-size: 50px;
        line-height: 1.3em;
    }

    .logo{
        margin: 30px 0px 25px 0px;
    }

    .footer-link{
        padding: 50px 0px 25px 0px;
    }
}

@media (max-width: 375px) {
    .main-text{
        font-size: 35px;
        line-height: 1.3em;
    }
}