@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');

* {
    margin: 0%;
    padding: 0%;
    font-family: 'Tilt Neon', sans-serif;
}
body {
    display: flex; /* This should be applied to the body element */
    align-items: center;
    justify-content: center;
    height: 100vh; /* This ensures the body takes up the full viewport height */
    margin: 0; /* Add this to remove default body margin */
    transition: 1s;
}
.box {
    background-color:white;
    width: 300px;
    height: 150px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    font-size: 25px;
}

#btn {
    margin-top: 10px;
    width: 150px;
    height: 45px;
    border-width: 0;
    border-radius: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    font-size: 17px;
}
#btn:hover{
    border-width: 1.5px;
}