* {
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
body {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: 40% 25% 35%;
  background: #f1f1f1;
  overflow: hidden;
}
.topLeft {
  /* background-color: #c6c6c6; */
  grid-column: 1;
  grid-row: 1;
  padding-top: 70px;
  padding-left: 80px;
}
.topLeft h1 {
  font-size: 4vw;
  font-weight: 500;
  letter-spacing: 1px;
}
.topRight {
  /* background-color: #929292; */
  grid-column: 2;
  grid-row: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  gap: 20px;
  height: 20%;
  padding: 15px 30px;
}
.topRight h5 {
  font-size: /*0.75em*/ 1.1vw;
  font-weight: 100;
}
.topRight i {
  background: #000;
  color: #fff;
  font-size: 1vw;
  height: fit-content;
  padding: 10px;
  border-radius: 50%;
}
.centerLeft {
  /* background-color: #393939; */
  grid-column: 1;
  grid-row: 2;
  padding-left: 80px;
  padding-top: 50px;
}
.centerLeft p {
  font-size: 1.1vw;
  font-weight: 100;
  width: 45%;
  line-height: 20px;
}
.centerRight {
  /* background-color: #4d3f3f; */
  grid-column: 2;
  grid-row: 2;

  padding-right: 60px;
}
.centerRight h4 {
  height: 30%;
  max-height: 35px;
  /* padding: 10px 0px; */
  font-weight: 100;
  font-size: 1.2vw;
}
.centerRight h4:hover {
  text-decoration: underline;
  cursor: pointer;
}
.bottom {
  /* background-color: #aa8484; */
  grid-column: 1/3;
  grid-row: 3;
}
.bottom img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.elem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid black;
  padding: 15px 0px;
}
.elem i {
  opacity: 0;
}
.elem:hover i {
  opacity: 1;
}

@media (max-width: 600px) {
  body {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 10% 23% 10% 27% 30%;
    background: #f1f1f1;
    overflow: hidden;
  }
  .topRight {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background-color: #dadada;
  }
  .topRight h5 {
    font-size: 1em;
    font-weight: 400;
  }
  .topRight i {
    font-size: 1em;
  }
  .topLeft {
    grid-column: 1;
    grid-row: 2;
    padding-left: 30px;
    padding-top: 20px;
    /* background: #a69c9c; */
  }
  .topLeft h1 {
    font-size: 2.3em;
    font-weight: 500;
    width: 100%;
    letter-spacing: 1px;
    align-self: center;
    /* line-height: 1.6em; */
  }
  .centerLeft {
    grid-column: 1;
    grid-row: 3;
    padding-left: 30px;
    padding-top: 0px;
  }
  .centerLeft p {
    font-size: 0.9em;
    font-weight: 300;
    width: 90%;
    line-height: 20px;
    letter-spacing: 1px;
  }
  .centerRight {
    grid-column: 1;
    grid-row: 4;
    padding: 30px;
  }
  .centerRight h4 {
    font-weight: 400;
    font-size: 1.1em;
  }
  .centerRight h4:hover {
    text-decoration: none;
    cursor: pointer;
  }
  .bottom {
    grid-column: 1;
    grid-row: 5;
  }
  .bottom img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  .elem {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    border-top: 1.5px solid black;
    padding: 15px 0px;
  }
  .elem i {
    opacity: 0;
    font-size: 1.2em;
  }
  .elem:hover i {
    opacity: 1;
  }
}
