@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0px;
  padding: 0px;
}

body {
  font-family: "Lato", sans-serif;
}

.home {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/home-banner.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.home::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.home .content {
  z-index: 5;
  max-width: 950px;
  text-align: center;
}
.home .content .intro {
  position: relative;
  font-size: 30px;
  color: #fff;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.home .content .intro::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  background: #fff;
}
.home .content .information {
  font-size: 20px;
  color: #fff;
  line-height: normal;
}
.home .content .information a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.home .content .information a:hover {
  text-decoration: underline;
}
.home .content .logo {
  margin-bottom: 70px;
}/*# sourceMappingURL=main.css.map */