* {
  margin: 0;
  padding: 0;
  font-family: helvetica;
}
body {
  height: 100vh;
  width: 100%;
  display: grid;
  grid-template-columns: 38% 17% 45%;
  grid-template-rows: 65% 35%;
  overflow: hidden;
}
.center {
  /* background-color: #b5b5b5; */
  grid-column: 1/3;
  grid-row: 1;
  padding: 100px 75px;
}
.center h1 {
  font-size: 8vw;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: -5px;
  font-family: verdana;
}
.bottomLeft {
  /* background-color: #797979; */
  grid-column: 1;
  grid-row: 2;
  padding-left: 75px;
  padding-bottom: 50px;
  align-content: end;
}
.bottomLeft .colors {
  margin-bottom: 30px;
  width: fit-content;
  padding: 6px;
  /* background-color: #fff; */
  display: flex;
  align-items: center;
  gap: 2px;
  border-radius: 20px;
  border: 1px solid black;
}
.bottomLeft .colors p {
  font-size: 1vw;
  margin-right: 10px;
}
.bottomLeft div .brown,
.black {
  height: 12px;
  width: 12px;
  border-radius: 50%;
}
.bottomLeft div .brown {
  background-color: #77543d;
}
.bottomLeft div .black {
  background-color: #000;
}
.bottomLeft h2 {
  font-size: 1.2vw;
  /* font-weight: 500; */
}
.bottomLeft .p {
  padding: 5px 5px 0px 0px;
  font-size: 0.9vw;
  line-height: 18px;
}
.bottomRight {
  /* background-color: #464646; */
  grid-column: 2;
  position: relative;
}
.bottomRight h2 {
  transform: rotate(-90deg);
  position: absolute;
  bottom: 5vw;
  right: -5vw;
  font-size: 1.5vw;
  padding-left: 80px;
}
.right {
  /* background-color: #232323; */
  grid-column: 3;
  grid-row: 1/3;
  align-content: end;
  justify-items: start;
  position: relative;
}
.right .head {
  width: 28vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px;
}
.right p {
  font-size: 1vw;
  font-weight: bold;
}
.right img {
  width: 28vw;
}
.right .imgbtn {
  position: relative;
}
.right .atb {
  position: absolute;
  z-index: 10;
  background: #000;
  color: white;
  align-content: center;
  text-align: center;
  top: 10%;
  right: -4.2vw;
  height: 8vw;
  width: 8vw;
  border-radius: 50%;
}

@media (max-width: 600px) {
  body {
    height: 100%;
    width: 100%;
    grid-template-columns: 100%;
    grid-template-rows: 20% 30% 5% 45%;
    overflow-y: visible;
  }
  .center {
    height: 100%;
    grid-column: 1;
    grid-row: 1;
    padding: 0px 20px;
    align-content: end;
  }
  .center h1 {
    font-size: 4em;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -2px;
    font-family: verdana;
    
  }
  .bottomLeft {
    height: 100%;
    grid-column: 1;
    grid-row: 2;
    padding: 5px 20px;
    align-content: center;

  }
  .bottomLeft .colors {
    margin-bottom: 20px;
    width: fit-content;
    padding: 6px;
  }
  .bottomLeft .colors p {
    font-size: 1.1em;
    margin-right: 10px;
  }
  .bottomLeft div .brown,
  .black {
    height: 15px;
    width: 15px;
    border-radius: 50%;
  }
  .bottomLeft div .brown {
    background-color: #77543d;
  }
  .bottomLeft div .black {
    background-color: #000;
  }
  .bottomLeft h2 {
    font-size: 1.3em;
  }
  .bottomLeft .p {
    padding: 10px 0px;
    font-size: 0.9em;
    line-height: 18px;
  }
  .bottomRight {
    grid-column: 1;
    grid-row: 3;
  }
  .bottomRight h2 {
    transform: rotate(0deg);
    position: relative;
    bottom: 0vw;
    right: 0vw;
    font-size: 1.5em;
    padding-left: 20px;
  }

  .right {
    grid-column: 1;
    grid-row: 4;
    align-content: center;
    justify-items: center;
    position: relative;
    height: 100%;
  }
  .right .head {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .head p {
    display: none;
  }
  .right img {
    width: 90vw;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  .right .imgbtn {
    position: relative;
    height: 100%;
  }
  .right .atb {
    position: absolute;
    z-index: 10;
    background: #000;
    color: white;
    align-content: center;
    text-align: center;
    top: -5%;
    right: 10;
    width: 3em;
    height: 3em;
    padding: 10px;
    font-size: 1em;
    border-radius: 50%;
  }
}
