body{
    display:flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    background-color:rgb(35, 35, 73);
    min-height:100%;
}

h1{
    font-size:250%;
    color:white;
}

body form{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

input{
    margin:15px;
}

#options{
    display:flex;
    flex-direction: row;
    justify-content: space-around;
    align-items:center;
}

.optionLink{
    margin:15px;
    height:150px;
    width:150px;
    display:flex;
    justify-content:center;
    align-items: center;
    background-color:white;
    color:black;
    font-size:125%;
    flex-direction:row;
    border-radius:10px;
    text-decoration: none;
}

.optionLink:hover{
    text-decoration: none;
    font-size:150%;
    color:#666;
    transition:all 0.1s;
}