/* Add button styling  */
button {
    transition: all 3s ease-in;
}

button:hover {
    cursor: pointer;
    transform: scale(1.1); 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); 
}

/* Added slight border on main  */
main {
    border-radius: 20px;
}