@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&family=Italiana&family=Italianno&family=Protest+Guerrilla&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Protest Guerrilla", sans-serif;
    gap: 1.875rem;
}

#logo{
    width: 20vw;
}

h1{
    color: aliceblue;
}

#name{
    color: rgb(212, 43, 122);
    font-size: 45px;
}

#va{
    color: rgb(43, 206, 212);
    font-size: 45px;
}

#voice{
    width: 150px;
    display: none;
}

#btn{
    width: 30%;
    background: linear-gradient(to right, rgb(21, 145, 207), rgb(201, 41, 116));
    text-align: center;
    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;
}

#btn:hover{
    box-shadow: 2px 2px 20px rgb(21, 145, 207), 2px 2px 20px rgb(201, 41, 116);
    letter-spacing: 2px;
    cursor: pointer;
}

/* Media Queries for Smaller Devices (Phones) */

/* For screens smaller than 480px */
@media (max-width: 480px) {
    body {
        gap: 1.25rem; /* Reduced gap for more compact design */
    }

    #logo {
        width: 40vw; /* Larger logo size on smaller screens */
    }

    h1 {
        font-size: 1.5rem; /* Smaller font size for better fitting */
        text-align: center; /* Center the header */
    }

    #name, #va {
        font-size: 36px; /* Adjusted font size for mobile */
    }

    #btn {
        width: 50%; /* Adjust button size */
        padding: 12px; /* Increased padding for touch targets */
        font-size: 18px; /* Slightly smaller font size */
    }

    #voice {
        width: 100px; /* Smaller voice gif size */
    }
}

/* For very small screens (e.g., phones with widths around 320px) */
@media (max-width: 320px) {
    #logo {
        width: 50vw; /* Further increase logo size */
    }

    h1 {
        font-size: 1.25rem; /* Adjust header font size further */
    }

    #name, #va {
        font-size: 30px; /* Further reduce font size for very small screens */
    }

    #btn {
        width: 60%; /* Adjust button to fit better */
        font-size: 16px; /* Smaller button text */
    }

    #voice {
        width: 80px; /* Further reduce voice gif size */
    }
}
