*{
    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;
}

.text-area {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.logo{
    max-width: 100%;
	width: 180px;
    margin: 2rem;
    transform: scale(3.5);
}

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

.description{
	max-width: 960px;
	margin: 0 2rem;
	margin-bottom: 3rem;
	font-size: 17px;
	line-height: 1.3em;
}

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

.coming-soon{
    font-size: 30px;
    font-weight: 600;
    padding: 25px 0;

    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;
}

.social-media, .contact-info{
	padding: 0;
    list-style: none;
}

.social-media li, .contact-info li{
    display: inline-block;
    font-size: 20px;
    margin: 0 2rem 3rem;
}

.dwhite-footer{
	background: white;
    text-align: center;
    padding: 2rem;
}

.dwhite-link{
	text-decoration: none;
}

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

}

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

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

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