@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;500;900&display=swap");
body {
  padding: 0;
  margin: 0;
}

.title {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 20px;
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
}

.bg-container {
  position: absolute;
  overflow: hidden;
  height: 100vh;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6)), url("../assets/img/bg-comingsoon.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
}

.container {
  display: grid;
  position: relative;
  height: 100vh;
  text-align: center;
}
.container .middle {
  position: relative;
  padding: 20px;
}
.container .middle .center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}
.container .middle .center h1 {
  font-family: "Roboto";
  font-weight: 900;
  font-size: 50px;
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.5);
}
.container .logo {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-start;
}
.container .logo img {
  height: 100px;
  width: auto;
  -webkit-filter: drop-shadow(6px 5px 4px rgba(0, 0, 0, 0.6));
  filter: drop-shadow(6px 5px 4px rgba(0, 0, 0, 0.6));
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#444')";
}

.social-media {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: flex-end;
  margin-bottom: 2.5rem;
}
.social-media a {
  display: inline-block;
  height: 50px;
  line-height: 52px;
  width: 50px;
  font-size: 20px;
  color: white;
  margin: 2rem 0.5rem;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.social-media a:hover {
  color: rgba(0, 0, 0, 0.8);
  background-color: #fff;
  border-radius: 50%;
}

.paragraph {
  font-family: "Roboto";
  font-weight: 100;
  font-size: 25px;
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 2px 2px 2px black;
}

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