@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto-Thin.ttf");
   }


body{
    font-family: "Roboto";
    position: fixed;
    top: 0px;
    left: 0px;
    margin: 0px;
    width: 100%;
    height: 100%;
    justify-content: center;
    display: flex;
}
h1,h2,h3{
    font-family: "Helvetica";
}

.overlay{
    z-index: 2;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    justify-content: center;
    display: flex;
}

.content{
    display: inline-block;
    background-color: white;
    box-shadow: 0 0 4px 0 rgba(0,0,0,.05),0 0 50px 0 rgba(0,0,0,.1);
    border-radius: 2px;
    padding: 30px;
    align-self: center;
    max-height: 100%;
    overflow: scroll;
    text-align: center;
}

.bluebutton{
    display: inline-block;
    background-color: #5383E8;
    color: white;
    border-radius: 5px;
    font-size: medium;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    cursor: pointer;
    border-style: none;
}

#background{
    background: url("/img/background.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;   
}

input{
    margin-top: 10px;
    margin-bottom: 10px;
}

.comment{
    color: #ff898b;
}