@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    height: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-direction: column;
}

#logo{
    width: 30vw;
}

/* Heading and Text Styling */
h1{
    color: aqua;
    font-family: "Playfair Display", serif;
}

#name, #va{
    color: rgb(237, 9, 158);
    font-size: 45px;
}

#va{
    color: rgb(46, 91, 217);
}

/* Hidden Voice Element */
#voice{
    width: 200px;
    display: none;
}

/* Button Styling */
#btn{
    width: 30%;
    background: linear-gradient(to right, rgb(242, 6, 210), rgb(3, 3, 239));
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    border-radius: 20px;
    color: aliceblue;
    box-shadow: 2px 2px 10px rgb(242, 6, 210), 2px 2px 10px rgb(3, 3, 239);
    border: none;
    transition: 0.5s;
}

#btn:hover{
    box-shadow: 2px 2px 20px rgb(242, 6, 210), 2px 2px 20px rgb(3, 3, 239);
    letter-spacing: 2px;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) { /* Tablet */
    #logo {
        width: 50vw;
    }

    #name, #va {
        font-size: 35px;
    }

    #btn {
        width: 50%;
        font-size: 18px;
        padding: 8px;
    }
}

@media (max-width: 480px) { /* Mobile */
    #logo {
        width: 70vw;
    }

    #name, #va {
        font-size: 28px;
    }

    #btn {
        width: 70%;
        font-size: 16px;
        padding: 6px;
    }

    body {
        gap: 20px;
    }
}
