* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  display: grid;
  place-items: center;
  height: 100vh;
  font-family: "Inter", sans-serif;
}
main {
  padding: 2rem 10rem;
}
nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
nav img:last-child {
  display: none;
}
ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
ul img {
  display: none;
}
li {
  font-size: 1.1rem;
  cursor: pointer;
}
li:hover {
  color: hsl(5, 85%, 63%);
}
h1 {
  color: hsl(35, 77%, 62%);
  margin-bottom: 2rem;
}
h3 {
  margin-bottom: 0.3rem;
  cursor: pointer;
}
.third-container h3:hover {
  color: hsl(35, 77%, 62%);
}
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  grid-template-areas:
    "box1 box1 box4"
    " box2 box3 box4";
  align-items: center;
  margin-bottom: 2rem;
}
.img-container {
  height: 100%;
}
.first-container {
  color: hsl(240, 100%, 5%);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  align-self: flex-start;
}
.second-container {
  height: 100%;
  display: grid;
}
.second-container button {
  background-color: hsl(240, 100%, 5%);
  color: hsl(36, 100%, 99%);
  cursor: pointer;
  border: none;
  border-radius: 0.3rem;
  font-weight: 700;
  padding: 0.7rem 3rem;
  text-transform: uppercase;
  align-self: flex-end;
  justify-self: flex-start;
}
.second-container button:hover {
  background-color: hsl(5, 85%, 63%);
  color: hsl(240, 100%, 5%);
}
.second-container p {
  color: hsl(236, 13%, 42%);
  font-size: 1.2rem;
  line-height: 1.5;
}
.third-container {
  background-color: hsl(240, 100%, 5%);
  color: hsl(36, 100%, 99%);
  border-radius: 0.3rem;
  padding: 2rem;
  height: 100%;
}
.third-container p {
  color: hsl(233, 8%, 79%);
  font-size: 1rem;
}
.img-container img {
  border-radius: 0.3rem;
  height: 100%;
  width: 100%;
}
hr {
  border-bottom: 0.5px solid hsl(233, 8%, 79%);
  margin: 2rem 0;
}
.items {
  display: flex;
  gap: 1rem;
}
.item-list {
  display: flex;
  gap: 1rem;
  flex-basis: 100%;
}
h2:hover {
  color: hsl(5, 85%, 63%);
  cursor: pointer;
}
.item-list h3:hover {
  color: hsl(5, 85%, 63%);
}
.sm-img-container {
  height: 100px;
  /* width: 150px; */
}
.sm-img-container img {
  height: 100%;
  /* width: 100%; */
}
