* {
    margin: 0px;
    padding: 0px;
    border: none;
}
html, body{
    height: 100vh;
}
@font-face { font-family: 'germanica';
    src:  url('plain_germanica-webfont.woff2') format('woff2'); }

    @font-face { font-family: 'germanica_shadow';
        src:  url('shadowed_germanica-webfont.woff2') format('woff2'); }
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
.head{
    width: 100%;
    background:  linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),url("bg_forest.jpg");
    background-size: cover;
    background-position-y: bottom;

    color: white;
   
    margin: 0;
    text-align: center;
    
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.head h1 {
    font-size: 5em;
    font-family: 'germanica';
}
.head h2 {
    font-size: 3em;
    font-family: "montserrat";
}

.main{

    margin: 50px 0;
}

.button{
    border: solid 3px white;
    display: inline-block;
    padding: 20px 40px;
    border-radius: 20px;
    color: white;
    font-family: "montserrat";
    transition: all .3s;
}

.button:hover{
    background-color: white;
    color: black;
}


.rights{
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgb(44, 44, 44);
    padding: 5px 10px 5px 10px;
    border-radius: 10px 0 0 0;
    font-family: "montserrat";
    font-size: .8em;
    color: white;
}

.rights a{
    color: white;
}

#clockdiv{
    font-family: "montserrat";
    color: #fff;
    display: block;
    font-weight: 100;
    text-align: center;
    font-size: 30px;
  }
  
  #clockdiv > div{
    padding: 15px;
    border-radius: 3px;
    background: #2727277c;
    display: inline-block;
    margin: 0 10px;
  }
  
  #clockdiv div > span{
    padding: 15px;
    border-radius: 3px;
    background: #111111c5;
    display: inline-block;
  }
  
  .smalltext{
    padding-top: 5px;
    font-size: 16px;
  }

  .logo{
      position: absolute;
      top: 20px;
      left: 20px;
     
      
  }

  .logo img{
    width: 180px;
    height: 100%;
  }
  
  
  @media only screen and (max-width: 600px) {
	  .head h1{
		  font-size: 3em;
		  
	  }
	  
	  .head h2{
		  font-size: 1.5em;
		  
	  }
	  .logo img{
    width: 100px;
    height: 100%;
  }
  #clockdiv > div {
   
    margin: 10px 10px;
}
  }