* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
}
body main {
  background-color: #F6F5FB;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
body main img {
  width: 290px;
  margin: 0 auto 40px;
}
@media (max-width: 500px) {
  body main img {
    width: 215px;
  }
}
body main h1 {
  font-size: 50px;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  padding: 0 5%;
}
@media (max-width: 500px) {
  body main h1 {
    font-size: 10vw;
  }
}
body main .contact {
  width: 100%;
  max-width: 985px;
  margin: 40px 0 0;
  padding: 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
body main .contact .item {
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  body main .contact .item {
    width: 100%;
    margin: 0 0 20px;
  }
}
body main .contact .item a {
  font-size: 20px;
  color: rgb(102, 102, 102);
  text-decoration: none;
  font-weight: 300;
  display: flex;
  transition: color 0.3s ease;
}
body main .contact .item a:hover {
  color: #000;
}
body main .contact .item a i {
  font-size: 24px;
  margin: 0 7px 0 0;
}

/*# sourceMappingURL=styles.css.map */
