/*reset*/
html,body,div,p,span,h1,h2,h3,h4,h5,h6,ul,ol,li,a,section,main,header,footer,nav,table,tbody,tfoot{
    margin:0;
    padding:0;
}

body{
    background:whitesmoke;
}

.white_button{
    background:white;
    color:darkblue;
    min-width:10rem;
    border-radius:5rem;
    text-align:center;
    text-decoration: none;
    display:inline-block;
    padding:.5rem;
    font-weight:600;
    box-shadow:0 0 8px rgba(0,0,0,0.3);
    width:fit-content;
}
.blue_button{
    background:darkblue;
    color:white;
    min-width:10rem;
    border-radius:5rem;
    text-align:center;
    text-decoration: none;
    display:inline-block;
    padding:.5rem;
    font-weight:600;
    box-shadow:0 0 8px rgba(0,0,0,0.3);
    width:fit-content;
}
.outline_button{
    
    color:royalblue;
    min-width:10rem;
    border-radius:5rem;
    text-align:center;
    text-decoration: none;
    display:inline-block;
    padding:.5rem;
    font-weight:600;
    border:solid 1px royalblue;
    width:fit-content;
}