
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    text-align: center;
    height:110vh;
}
.logo {
    width: 80px; 
    height: auto;
}
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}
.animated-text {
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    opacity: 0;
    animation: fadeMove 3s infinite;
}
@keyframes fadeMove {
    0% { opacity: 0; transform: translateX(-50px); }
    50% { opacity: 1; transform: translateX(0); }
    100% { opacity: 0; transform: translateX(50px); }
}

.social-links img{
    height:40px;
    width:40px;
}
.social-links img:hover{
    /* width:100px; */
    transform: translateY(-10px);
}

.floating-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.web_footer{
    position:fixed;
    bottom:0px;
    width:100%;

}
.floating-section:hover {
    width:100%;
}

footer {
    background: #333;
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
