main{
    margin: 0 auto;
    background-color: white;
    color: black;
    max-width: 800px;
}

section #content{
    align-items:center ;
}

body{
    background-color: white;
}

code{
    color: rgb(0, 153, 255);
}

p button{
    padding: 0.6em 1em;
    border: 4px solid rgb(0, 153, 255);
    transition: ease-in-out 0.3s;
    background-color: transparent;
    color: rgb(0, 153, 255);
    font-weight: bolder;
    font-size: 16px;
}

p button:hover{
    transform: scale(1.2) rotate(10deg);
    background-color: rgb(0, 153, 255);
    color: white;
}