* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: hsl(47, 88%, 63%);
  --Gray-500-color: hsl(0, 0%, 42%);
  --Gray-950-color: hsl(0, 0%, 7%);
}
@font-face {
  font-family: "FigtreeSemibold";
  src: url("./assets/fonts/Figtree-Italic-VariableFont_wght.ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Figtreebold";
  src: url("./assets/fonts/Figtree-VariableFont_wght.ttf");
  font-weight: 800;
  font-style: normal;
}
html,
body {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
body {
  background-color: var(--primary-color);
}
p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--Gray-500-color);
}
.container {
  background-color: white;
  width: 100%;
  max-width: 450px;
  padding: 20px;
  border-radius: 10px;

  border: 1px solid black;
  box-shadow: 5px 5px 5px black;
}
.main-img {
  width: 100%;
  margin-bottom: 10px;
}

.learen-button {
  font-family: "FigtreeSemibold";
  padding: 10px 16px;
  border: 1px solid var(--primary-color);
  font-size: 16px;
  background-color: var(--primary-color);
  margin-bottom: 10px;
}
.text {
  font-family: "FigtreeSemibold";
  color: var(--Gray-950-color);
}
h1 {
  font-family: "Figtreebold";
}
.mentor-detailes {
  display: flex;
  align-items: center;
}
.mentor-detailes img {
  width: 50px;
  height: 50px;
}
.mentor-detailes h4 {
  font-family: "Figtreebold";
  margin-left: 10px;
}
.attribution {
  margin-top: 15px;
}
@media screen and (max-width: 490px) {
  .container {
    max-width: 300px;
  }
  h1 {
    font-size: 22px;
  }
}
