:root{
--main-color: hsl(47, 88%, 63%);
--White: hsl(0, 0%, 100%);
--Gray: hsl(0, 0%, 42%);
--dark-gray: hsl(0, 0%, 7%);
font-size: 16px;
font-family: "Figtree", serif;
font-size: 15px;
margin: 0;
padding: 0;
border: 0;
}

body{
  height: 100vh;
  background-color: var(--main-color);
  display: grid;
  align-items: center;
  justify-content: center;
}

main{
  background-color: white;
  width: 320px;
  box-sizing: border-box;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid black;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 1);
  height: 525px;
}

.image-box{
  border-radius: 15px;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: grid;
  align-items: center; 
}

.image{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learning-link{
  font-size: 13px;
  display: inline-block;
   color:var(--dark-gray);
   padding: 6px 13px;
   border-radius: 5px;
   background-color: var(--main-color);
   margin-top: 25px;
   margin-bottom: 5px;
   font-weight: 800;
}



.date{
  color:var(--dark-gray);
  font-size: 12px;
}

h1{
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 800;
}

h2{
  color: var(--Gray);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.profile{
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.profile-picture{
  margin-right: 10px;
  height: 32px;
}

.profile-name{
  font-weight: 750;
}