@charset "UTF-8";

body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, blue, rgb(142, 142, 255));
    margin: 0;
}

.main{
    perspective: 1000px;
}

.card{
    width: 500px;
    height: 250px;
    background-color: white;

    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    
    transition: transform 0.1 ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}