@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap');
@font-face {
font-family: 'Bahnschrift Regular';
src: local('Bahnschrift Regular'), url('../../fonts/BAHNSCHRIFT.woff') format('woff');
}

html{
  font-size: 4vmin;
}

body{
display: flex;
flex-direction: column;
background-color: cornflowerblue;
align-items: center;
justify-content: center;
width: 100vw;
height: 100vh;
overflow: hidden;
margin: 0;
color: whitesmoke;
font-family: 'Bahnschrift Regular';
}

  div{
      
    margin-top: 1%;
    margin-bottom: 1%;
  }

  h1{
      position: absolute;
      top: 5%;
      font-size: 4.5vmin;
      text-align: center;
  }
  p{
    position: absolute;
    bottom: 5%;
    font-size: 2vmin;
  }



  a.button5 {
display: inline-block;
padding: 0.46em 1.6em;
border: 0.1em solid #1b1b1b;
margin:0 0.2em 0.2em 0;
border-radius:0.12em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
font-weight:300;
color:#2c2c2c;
text-shadow: 0 0.04em 0.04em rgba(20, 20, 20, 0.35);
background-color:#22b7c2;
text-align:center;
transition: all 0.15s;
    }
    
  a.button5:hover{
text-shadow: 0 0 2em rgb(12, 134, 190);
color:#FFFFFF;
border-color:#ffffff;
    }

    @media all and (max-width:30em){
     a.button5{
  display:block;
  margin:0.4em auto;
  }
  }