html{
    width: 100vw;
    height: 100vh;
}
*{
    margin: 0;
    padding: 0;
}
body {
    background-image: url("resources/bg.png ");
    background-color: #89b0df;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

@font-face {
    font-family: 'Montserrat';
    src: url("resources/Montserrat-Medium.ttf");
}

.title {
    width: 100%;
    border-bottom: 1px solid #FFF;
    padding: 10px 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
}

.subtitle {
    padding: 10px 30px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;

}