
  
   body {
    /* font-family: ; */
   
        padding: 0px;
        margin: 0px;
    }
    
    

.logo-container {
    animation: moveLogos 42s linear infinite; 
    display: flex;
}

#u{
    letter-spacing: -0.03em;
    margin-top: 10px;
    margin-bottom: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 100px;
    opacity: 1;
    font-weight: 200; 
    line-height: 1em;
    color: #41535d;
}

#logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#na1{
    letter-spacing: -0.03em;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 1;
    color: #41535d;
    letter-spacing: -0.03em;
    /* margin-left: 25rem; */
}

#na2{
    letter-spacing: -0.03em;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 1;
    color: #41535d;
    font-weight: 500;
}
#founder {
    margin-bottom: 25px;
    font-weight: 700; 
    display: inline-block;
}

#section1{
    margin-left: 5rem;
}


.child {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.parent:hover .child {
    display: block;
}

.child li {
    white-space: nowrap;
}

.parent {
    position: relative;
}

@media only screen and (min-width: 768px) {
    .parent:hover .child {
        opacity: 1;
        height: auto;
        overflow: none;
        transform: translateY(0);
    }

    .child {
        opacity: 0;
        height: 0;
        overflow: hidden;
        transform: translateY(-10%);
    }

}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

