/* Fonts */

@font-face { 
  font-family: "Roboto-Black"; 
  src: url("/fonts/Roboto-Black.ttf"); 
}

@font-face { 
  font-family: "Roboto-Bold"; 
  src: url("/fonts/Roboto-Bold.ttf"); 
}

@font-face { 
  font-family: "Roboto-Light"; 
  src: url("/fonts/Roboto-Light.ttf"); 
}

@font-face { 
  font-family: "Roboto-Medium"; 
  src: url("/fonts/Roboto-Medium.ttf"); 
}

@font-face { 
  font-family: "Roboto-Regular"; 
  src: url("/fonts/Roboto-Regular.ttf"); 
}

@font-face { 
  font-family: "Roboto-Thin"; 
  src: url("/fonts/Roboto-Thin.ttf"); 
}

/* Style */

body {
  font: 11px "Roboto-Regular", Helvetica, Arial, sans-serif;
  color: #303030;
  text-align: center;
  margin: 0;
}

h1 {
  font: 25px "Roboto-Black", Helvetica, Arial, sans-serif;
  margin: 0px;
}

h2 {
  font: 20px "Roboto-Regular", Helvetica, Arial, sans-serif;
  margin-top: 5px;
}

a.mail {
  color: #5c5c5c;
  font: 15px "Roboto-Regular", Helvetica, Arial, sans-serif;
  margin-bottom: 20px;
}

a {
  color: #999999;
  text-decoration: none;
  font-size: 12px;
}

main {
  padding: 50px;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 200px;
  border-radius: 5px;
  box-shadow: 4px 4px 15px #c2c2c2;
}

.button {
  background-color: #8a8a8a;
  color: white;
  padding: 10px;
  margin: 5px;
  border-radius: 4px;
  font-size: 10pt;
}

.button:hover {
  box-shadow: 1px 1px 5px #888888;
}

main:hover {
  box-shadow: 4px 4px 15px #888888;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

@media only screen and (max-width: 570px) {
  main {
    padding: 50px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0;
    border-radius: 0;
    box-shadow: 4px 4px 15px #c2c2c2;
  }

  footer {
    background-color: white;
    padding: 10px;
  }
}
