* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(244, 208, 78);
    display: grid;
    height: 100vh;

    

}

section {
    background-color: rgb(255, 255, 255);
    width: 300px;
    height: 450px;
    grid-column: 2;
    grid-row: 2;
    border-radius: 15px;
    border: 1px solid black;
    box-shadow: 7px 7px;

}

.content {
    display: grid;
    gap: 15px;
    margin-left: 15px;
    font-family: "Outfit", sans-serif;
}


.card {
   display: grid;
   place-self: center;
}

.card img {
    object-fit: cover;
    width: 100%;
    height: 135px;
    border-radius: 10px;
    margin-top: 27px;
    transform: scale(1.2);
}

.first {
    font-weight: bold;
    background-color: rgb(244, 208, 78);
    width: 80px;
    border-radius: 5px;
    padding: 8px;
    text-align: center;
    margin-top: 20px;
  
}

.third {
    font-weight: 300;
   
}

.fourth {
    position: relative;
    bottom: 30px;
}

.fourth img {
    width: 30px;
}

.fourth p{
    display: inline;
    position: relative;
    bottom: 10px;
    left: 10px;
    font-weight: bold;
}

h1:hover 
 {
    color: rgb(244, 208, 78);
    cursor: pointer;
}
