@font-face {
  font-family: Lato-Regular;
  src: url('../fonts/Lato/Lato-Regular.ttf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f0f0f0;
  font-family: Lato-Regular;
  font-size: 15px;
  color: #666666;
  background-image: url('../images/bg01.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.center-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  text-align: center;
  width: 67vh;
  max-width: 80%;
}
.logo {
  max-width: 20em;
  height: auto;
}
.contacts {
  margin-top: 20px;
}
.contacts p {
  margin: 4px 0;
  font-size: 16px;
  color: #333333;
  line-height: 16px;
}
h1 {
  font-weight: normal;
  font-size: 85%;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, .1);
}