div.header {
    text-align: center;
    position: relative;
    float: left;
    background-image: url("/css/tartan_onich.jpg");
    background-repeat: repeat;
    border-style: solid;
    height: 80;
    justify-content: center;
    align-items: center;
    display: flex;
}
div.center {
    text-align: center;
    postion: relative;
    float: left;
    font-size: 48px;
    text-transform: capitalize;
    vertical-align: middle;
    box-sizing: border-box;

}
h1 {
    font-size: 44px;
}
a.button {
    background-color: #a4d6f5; /* Blue */
    border: none;
    color: DarkGreen;
    padding: 6px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 10px;
    max-width: 25%;
    justify-content: center;
    align-items: center;
    -webkit-transition-duration: 0.2s; /* Safari */
    transition-duration: 0.2s;
}

a.button:hover {
    background-color: #cc0000; /* Red */
    color: #ccffcc;
}
.buttons {
    justify-content: space-around;
    align-items: center;
    display: flex;
    padding: 10px;
}

@media only screen and (max-width: 850px) {
   div.center {
       font-size: 40px;
   }
}
@media only screen and (max-width: 740px) {
   div.center {
       font-size: 36px;
   }
   h1 {
       font-size: 36px;
   }
}
@media only screen and (max-width: 690px) {
   div.center {
       font-size: 29px;
   }
}
@media only screen and (max-width: 600px) {
   div.center {
       font-size: 24px;
   }
   h1 {
       font-size: 30px;
   }
}
@media only screen and (max-width: 530px) {
   div.center {
       font-size: 19px;
   }
   img.imgh {
      width: 35px;
      height: 50px;
   }
}
@media only screen and (max-width: 480px) {
   div.center {
       font-size: 16px;
   }

   a.button {
      padding: 4px 8px;
      font-size: 10px;
   }
       h1 {
       font-size: 16px;
   }
}
@media only screen and (max-width: 400px) {
   div.center {
       font-size: 14px;
   }

   a.button {
      padding: 4px 8px;
      font-size: 10px;
   }
}