/* Basic CSS Boilerplate */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  background-color: #fff;
  height: 100%;
  width: 100%;
}

#main {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-end;
  /* justify-content: space-between; */
  padding: 0px 90px;
  padding-top: 150px;
  gap: 70px;
}

#left {
  height: 100%;
  width: 45%;
  /* background-color: red; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 40px;
}

#left h1 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
}

#left h1 {
  font-size: 120px;
  font-weight: 500;
  line-height: 125px;
}

#left_bottom {
  /* height: 40%; */
  width: 100%;
  /* background-color: yellow; */
}

#color {
  /* background-color: blue; */
  width: fit-content;
  padding: 5px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid black;
}

#color h5 {
  font-size: 20px;
  margin-right: 10px;
  font-weight: 400;
}

#color_1 {
  height: 20px;
  width: 20px;
  background-color: aqua;
  border-radius: 50%;
  margin: 3px;
}

#color_2 {
  height: 20px;
  width: 20px;
  background-color: rgb(136, 18, 120);
  border-radius: 50%;
}

#left h2 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 50px;
}

#left p {
  margin-top: 10px;
  font-weight: 400;
  font-size: 15px;
  width: 60%;
  line-height: 1.2;
}

#right {
  height: 90%;
  width: 33%;
  /* background-color: blue; */
  position: relative;
}

#right_top {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px;
  /* background-color: red; */
  padding-right: 15px;
}

#right_top h4 {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-size: 25px;
  font-weight: 600;
}

#right_top i {
  color: gold;
}

#right img {
  width: 100%;
  height: 91%;
  object-fit: cover;
}

#black_box {
  height: 130px;
  width: 130px;
  background-color: rgb(24, 22, 22);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -18%;
  top: 35%;
  position: absolute;
}

#black_box h5 {
  font-weight: 500;
  font-size: 20px;
}

#rotated {
  /* background-color: red; */
  left: -10%;
  bottom: 5%;
  position: absolute;
  rotate: -90deg;
  transform-origin: 0 0;
  font-size: 30px;
  font-weight: 500;
}
