body {
  font-family: Poppins, sans-serif;
}

a {
  text-decoration: none;
  color: #424242;
}

.root {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  display: grid;
  height: 100vh;
  grid-template-rows: 20% 60% 20%;
  grid-template-columns: 60% 40%;
}

.logo-container {
  grid-row: 1;
  grid-column: 1;
  text-align: center;
}

.logo {
  margin-top: 64px;
  width: 220px;
}

.coming-soon-container {
  grid-row: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coming-soon {
  margin: 0;
  font-size: 72px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #424242;
}

.email-btn {
  display: inline-block;
  font-weight: 500;
  width: 180px;
  padding: 22px 0;
  margin-top: 32px;
  border: 2px solid #424242;
  text-align: center;
  cursor: pointer;
  text-transform: none;
  transition: 0.4s;
}

.email-btn:hover {
  border-color: #424242;
  background: #424242;
  color: #fff;
}

.footer-container {
  grid-row: 3;
  grid-column: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.copyrights {
  margin-bottom: 32px;
  font-size: 14px;
  color: #797979;
}

.img {
  grid-row: 1/100 span;
  grid-column: 2;
  background-image: url('../assets/img.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (max-width: 1300px) {
  .coming-soon {
    font-size: 64px;
  }
}

@media only screen and (max-width: 1030px) {
  .container {
    grid-template-columns: 100%;
    grid-template-rows: 20% 60% 30% 10%;
  }

  .coming-soon-container {
    grid-row: 2;
  }

  .img {
    grid-row: 3;
    grid-column: 1;
  }

  .footer-container {
    grid-row: 4;
  }
}

@media only screen and (max-width: 630px) {
  .coming-soon {
    font-size: 48px;
  }

  .email-btn {
    width: 180px;
    padding: 20px 0;
  }
}

@media only screen and (max-width: 480px) {
  .coming-soon {
    font-size: 36px;
  }
}
