* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh; /* Changed to 100vh for full viewport height */
    background-color: black; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

#logo {
    width: 20vw;
    max-width: 150px; /* Maximum width for logo */
    height: auto; /* Maintain aspect ratio */
}

h1 {
    color: aliceblue;
    font-family: "Protest Guerrilla", sans-serif;
    text-align: center; /* Center text */
    font-size: 2.5rem; /* Responsive font size */
}

#name {
    color: rgb(212, 43, 122);
    font-size: 45px;
}

#va {
    color: rgb(43, 206, 212);
    font-size: 45px;
}

#voice {
    width: 100px;
    display: none;
    transition: opacity 0.3s ease;
}

#btn {
    width: 30%;
    max-width: 250px; /* Max width for button */
    background: linear-gradient(to right, rgb(21, 145, 207), rgb(201, 41, 116));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 20px;
    color: white;
    box-shadow: 2px 2px 10px rgb(21, 145, 207), 2px 2px 10px rgb(201, 41, 116);
    border: none;
    transition: all 0.5s;
    cursor: pointer;
}

#btn:hover {
    box-shadow: 2px 2px 20px rgb(21, 145, 207), 2px 2px 20px rgb(201, 41, 116);
    letter-spacing: 2px;
}

#btn:active {
    transform: scale(0.98);
}

footer {
    margin-top: 50px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    bottom: 0;
}


footer p {
    margin: -10px;
    
}

footer .social-media {
    margin-top: 20px;
}

footer a {
    color: rgb(43, 206, 212);
    text-decoration: none;
    margin: 10px;
    font-size: 25px;
    
}
.social-icon {
    width: 20px;  
    height: 20px; 
    margin-right: 2px; 
    vertical-align: middle; 
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    #logo {
        width: 30vw;
    }
    h1 {
        font-size: 2rem;
    }
    #btn {
        width: 50%; 
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    #logo {
        width: 40vw; 
    }
    h1 {
        font-size: 1.5rem; 
    }
    #btn {
        width: 80%; 
        font-size: 16px; 
    }
}
