body{
    font-family: 'Roboto', sans-serif;
    background-color: rgb(238,238,238);
}
#logoContainer{
    width: 80%;
    margin-left: 10%;
    margin-top: 10%;
}
h1{
    font-weight: 900;

}
#titleContainer{
    width: 80%;
    text-align: center;
    margin-left: 10%;
    font-size: 30px;
    margin-top: 2%;
}
#introContainer{
    color: rgb(91,91,91);
    font-weight: lighter;
    margin-left: 10%;
    font-size: 20px;
}
h2{
    font-weight: inherit;
}
#bothButtonContainers{
    margin-left: 10%;
    width: 80%;
}
.eachButtonContainer{
    width: 100%;
    margin-top: 10%;
}
.eachButton{
    width: 100%;
    padding: 2%;
    border-radius: 10px 10px 10px;
    border-width: 5px;
    border-style: solid;
    border-color: rgb(254,105,93);
    background-color: rgb(238,238,238);
    transition: background-color .6s ease-in-out;
    margin-top: 0;
    font-weight: 900;
    font-size: 6vw;
    background-color: white;
    box-shadow: 0px 0px 10px rgb(254,105,93, 0.6);
}
.eachButton:hover{
    background-color: rgb(254,105,93);
}