body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ebcde7;
}

main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 300px;
    height: 500px;
}

h1{
    color: purple;
    text-shadow: 
        3px 3px 0 white, 
        -1px 1px 0 white, 
        1px -1px 0 white, 
        -1px -1px 0 white; 
}

button{
    border: 1px solid black;
    border-radius: 20px;
    background-color: #FFF;
    color: violet;
    font-size: large;
    width: 200px;
    height: 50px;
}

button:hover{
    cursor: pointer;
    color: #FFF;
    background-color: violet;
    transition: 1s;
}