* {
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

body {
    position: relative;
    width: 100%;
    margin: 0;
    background-image:url("../image/background.JPG");
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
}

.page {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
    padding: 20px;
    padding-top: 70px;
    overflow-y: auto;
}

.page>* {
    margin: auto;
}

h1,h2,h3,p,a {
    color: rgba(0,0,0,0.8);
}

h3 {
    font-size: 20px;
}

hr {
    border:0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(0,0,0,0.1);
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    margin: 10px;
    text-decoration: none;
}



@media screen and (max-width: 960px){
    .button {
        margin: 5px 10px;
    }
    .or {
        display: inline-block;
        width: 100%;
    }
}
