@font-face{
    font-family: Roboto Mono;
    src: url(Fonts/Roboto_Mono/static/RobotoMono-Thin.ttf);
}

body, html {
    height: 100%;
    margin: 0;
}

.backImage{
    background-color: black;
    margin: 0;
    background-image: url(Images/RoadsideBackdrop.png);
    height: 100%;
    background-repeat: no-repeat;
    background-size:cover;
    box-shadow: 5px;
}

.boxInMiddle{
    margin: 0;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 25px; 
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    width: 50%;
    height: 62%;
    right: 25vw;
    top: 15%;
}

#title{
    margin: 30px;
    text-align: center;
    font-size: 5svb;
    font-family: Roboto Mono, 'Courier New', Courier, monospace;
    color:deepskyblue;
    text-shadow: 0px 0px 15px;
}

#subTitle{
    margin-top: 1vw;
    margin-left: 1vw;
    margin-right: 1vw;
    text-align: center;
    top: 20%;
    font-size: 3vb;
    font-family: Roboto Mono, 'Courier New', Courier, monospace;
    height: 15%;
}

#contactUs{
    text-align: center;
    text-decoration: none;
    position: inherit;
    font-size: 3vb;
    color: aliceblue;
    font-family: Roboto Mono, 'Courier New', Courier, monospace;
    padding: 2.5% 5%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background-color 0.2s;
    bottom: 5%;
    left: 30%
}

#contactUs:hover{
    background: rgba(255, 255, 255, 0.5);
}