@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  font-family: "Poiret One", cursive;
  line-height: 1.7;
  position: relative;
  height: 100vh;
}

.cover{
  background-color: hsl(199, 85%, 5%);
  position: absolute;
  width: 100%;
  height: 100vh;
}

.cover-heading {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cover-heading h1 {
  color: #d2b396;
  font-size: 52px;
  font-weight: bold;
  display: inline-block;
  font-family: "Poiret One", cursive;
}

.cover-heading span {
  color: #d2b396;
  font-size: 52px;
  font-weight: bold;
  display: inline-block;
}

.cover-2{
  background-color: #16313a;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.cover-3 {
  background-color: #021118;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.cover-4 {
  background-color: #b4865b;
  position: absolute;
  width: 100%;
  height: 100vh;
}

.gorges {
  font-family: "Poiret One", cursive;
  letter-spacing: -4px;
  line-height: 1;
  color: #2d2d2d;
  font-size: 72px;
  z-index: -1;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cover-5 {
  background: linear-gradient(to bottom, #16313a, black);
  position: absolute;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  padding: 20px 14px;
}

.logo{
  color: #fff;
  font-size: 28px;
  font-weight: bold;
}

header ul {
  margin-left: auto;
}

header ul li {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  margin-left: 10px;
}

.container{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: 20px;
}

.container .left img {
  width: 100%;
  border-radius: 5px;
}

.container .right{
  padding: 0 10px;
  margin-top: -100px;
}

.container .right h1 {
  color: #fff;
  font-size: 124px;
  font-weight: bold;
  display: inline-block;
  font-family: "Poiret One", cursive;
  line-height: 1;
}

.container .right span {
  font-family: 'Poiret One', cursive;
  font-size: 72px;
  letter-spacing: -4px;
  color: #b4865b;
}

.container .right p {
  margin-top: 40px;
  max-width: 600px;
  color: #fff;
  opacity: 0.5;
  font-size: 18px;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 100px;
  }

  .container .left img {
    width: auto;
    height: 600px;
    border-radius: 5px;
  }

  .container .right{
    padding: 0;
    margin-top: -80px;
  }

  .container .right h1 {
    color: #fff;
    font-size: 124px;
    font-weight: bold;
    display: inline-block;
    font-family: "Poiret One", cursive;
    line-height: 1;
  }

  .container .right span {
    font-size: 72px;
    letter-spacing: -4px;
    color: #b4865b;
  }

  .container .right p {
    margin-top: 40px;
    max-width: 600px;
    color: #fff;
    opacity: 0.5;
    font-size: 18px;
    line-height: 1.7;
  }

  .container .right a {
    text-decoration: none;
    color: #fff;
    display: inline-block;
    margin-top: 40px;
    opacity: 0.5;
    border: 1px solid gray;
    padding: 5px 15px 5px 15px;
    border-radius: 5px;
  }

  header {
    padding: 50px 80px;
  }

  header ul li {
    font-size: 14px;
    margin-left: 50px;
  }

  .gorges {
    font-size: 124px;
  }

  .cover-heading span {
    font-size: 72px;
  }
}