* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: myFont;
  src: url(leky.ttf);
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: myFont;
}

.main {
  width: 100%;
  height: 100%;
  background-color: #dadada;
  display: grid;
  grid-template-columns: 25% 25% 50%;
  grid-template-rows: 25% 55% 20%;
}

.top-left {
  padding: 25px;
}

.square {
  width: 20px;
  height: 20px;
  background-color: black;
  rotate: 50deg;
}

.square:hover {
  cursor: pointer;
}

.top-right {
  justify-self: right;
  padding: 25px;
}

.top-right > h4,
h5 {
  text-align: right;
}

.top-right h4 {
  margin-bottom: 4vh;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4px;
}

.top-right h4:hover {
  cursor: pointer;
}

.top-right h5 {
  font-weight: 550;
  font-size: 8px;
  letter-spacing: 5px;
  line-height: 1.2rem;
  color: #635151;
}

.top-right h5:hover {
  cursor: pointer;
}

.top-right h6 {
  display: none;
}

.center {
  grid-row: 2;
  grid-column: 1 / 3;
  width: 100%;
  padding: 25px;
}

.center h1 {
  font-size: 7vw;
  font-weight: 600;
  font-weight: 500;
  line-height: 6vw;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: NewYork;
}

.center h1:nth-child(2n) {
  text-align: center;
}

.bottom {
  grid-row: 3;
  grid-column: 1 / 3;
  padding: 25px;
}

.bottom p {
  margin-top: 10px;
  width: 80%;
  font-size: 8px;
  font-weight: 400;
  text-align: start;
  font-weight: 550;
  font-size: 8px;
  letter-spacing: 5px;
  line-height: 1.2rem;
  color: #635151;
}

.circle {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(-50%, -50%);
  background-color: cornflowerblue;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circle:hover {
  cursor: pointer;
}

.circle i {
  color: #fff;
  font-size: 1.2rem;
}

.right {
  grid-row: 1 / 4;
  grid-column: 3;
  padding: 25px;
}

.right video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-right: 4rem;
  object-position: top;
}

@media (max-width: 600px) {
  .main {
    grid-template-columns: 50% 50%;
    grid-template-rows: 8% 30% 10% 50%;
  }

  .top-left {
    padding: 15px;
  }

  .square {
    width: 18px;
    height: 18px;
    rotate: 50deg;
  }

  .top-right {
    justify-self: right;
    padding: 15px;
  }

  .top-right h4 {
    display: none;
  }

  .top-right h4:hover {
    cursor: pointer;
  }

  .top-right h5 {
    display: none;
  }

  .top-right h5:hover {
    cursor: pointer;
  }

  .top-right h6 {
    display: initial;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .top-right h6:hover {
    cursor: pointer;
  }

  .center {
    grid-row: 2;
    grid-column: 1 / 3;
    padding: 15px;
  }

  .center h1 {
    font-size: 15vw;
    line-height: 7vh;
  }

  .center h1:nth-child(2n) {
    text-align: right;
  }

  .bottom {
    grid-row: 3;
    grid-column: 1 / 3;
    padding: 0px 15px;
  }

  .bottom p {
    width: 100%;
    font-size: 10px;
    text-align: start;
    color: #131111;
  }

  .circle {
    width: 40px;
    height: 40px;
    top: 51%;
    left: 40%;
    transform: translate(-50%, -50%);
    rotate: 90deg;
  }

  .circle:hover {
    cursor: pointer;
  }

  .circle i {
    font-size: 1.2rem;
  }

  .right {
    grid-row: 4;
    grid-column: 1 / 3;
    padding: 15px;
  }

  .right video {
    padding: 0px 5px;
  }
}
