@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

body {
    margin: 0;
    height: 100vh;
    display: flex;
    font-family: "Quicksand", sans-serif;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    background: black;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-symbol {
    position: absolute;
    font-size: 25px;
    color: rgba(255, 255, 255, 0.2);
    opacity: 0.2;
    animation: floatUp 10s infinite linear;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

h2 {
    font-size: 80px;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    margin: 0;
}

p {
    font-size: 20px;
    color: white;
    margin-top: -5px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.sub-text1 {
    font-size: 17px;
    margin-top: 30px;
}

.sub-text2 {
    font-size: 15px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin: 0 15px;
    font-size: 30px;
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #ffcc00;
}

footer {
    position: fixed;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 400;
    letter-spacing: 0.4px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

footer p {
    margin: 0;
    font-size: 13px;
}

@media (max-width: 600px) {
    h2 { 
        font-size: 55px; 
    }
    p { 
        font-size: 12px; 
    }
    .sub-text1 { 
        font-size: 15px; 
    }
    .sub-text2 { 
        font-size: 13px; 
    }
    .social-icons a { 
        font-size: 25px; 
        margin: 0 10px; 
    }
    footer {
        bottom: 20px;
    }
    
    footer p {
        font-size: 10px;
    }
}
