* {
    margin: 0;
    padding: 0;
}

#preloader {
    background:#3c3e86 url(Animated_ZDS_logo.gif) no-repeat center center;
    background-size: 20%;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    animation: fadeout 1s ease;
    animation-fill-mode: both;
}
@keyframes fadeout {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

#banner {
    background: linear-gradient(rgba(0,0,0,0.5), 
    #3c3e86), url(Background.jpg); 
    background-size: cover; 
    background-position: center; 
    height: 100vh;
}
.logo {
    width: 120px;
    position: absolute;
}
.container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

#moving-image {
    position:absolute;
    width: 450px;
    height: auto;
    transition: transform 0.1s ease; 
}
.banner-text {
    text-align: center;
    padding-top: 10vh; 
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}

.tektur-banner-heading {
    font-family: "Tektur", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 70;
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}

.banner-text h1 {
    font-family: "Tektur", sans-serif;
    font-size: 75px; 
    font-style: normal;
    color: #e2c35e;
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}
.banner-text p {
    font-family: "Tektur", sans-serif;
    font-size: 20px; 
    font-style: normal;
    text-align: left;
    color: #ffffff;
    animation: fadeIn 1s ease;
    animation-fill-mode: both;
}
.text-box {
    position: absolute;
    width: 500px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5);
}
@keyframes fadeIn {
    from {
        opacity: 0; 
    }
    to {
        opacity: 1; 
    }
}
.social-banner {
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-btn {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 5px;
    font-size: 16px;
    font-family: "Tektur", sans-serif;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.social-btn:hover {
    background-color: #555;
}
@media (max-width: 768px) {
    #banner{
        height: 120vh;
    }
    .banner-text {
        padding-top: 50vh;
    }
    .banner-text h1 {
        font-size: 50px;
    }
    .banner-text p{
        font-size: 15px;
    }
    .text-box{
        width: 320px;
        top: 80%;
    }
    .social-btn{
        padding: 5px 10px;
        margin: 0 2px;
    }
}
