*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Figtree;
}
:root{
    --Yellow: hsl(47, 88%, 63%);
    --white: hsl(0, 0%, 100%);
    --Gray500: hsl(0, 0%, 42%);
    --Gray950: hsl(0, 0%, 7%);
}
@font-face {
    font-family: Figtree;
    src: url(assets/fonts/Figtree-VariableFont_wght.ttf);
}
body{
    background-color: var(--Yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
main{
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid var(--Gray950);
    box-shadow: 8px 8px 0 var(--Gray950);
    max-width: 375px;
}
section{
    padding: 5%;
}
#mainImage{
    height: 200px;
    width: 100%;
    border-radius: 20px;
}
h2{
    display: inline-block;
    background-color: var(--Yellow);
    font-size: 1em;
    padding: 0.4em 0.8em;
    border-radius: 5px;
    margin: 1em 0;
    font-weight: 800;
}
h3{
    color: var(--Gray500);
    font-size: 0.9em;
    font-weight: 500;
}
h1{
    color: var(--Gray950);
    font-weight: 900;
    font-size: 1.5em;
    margin: 0.8em 0;
}
h1:hover{
    color: var(--Yellow);
    cursor: pointer;
}
.Maintext{
    color: var(--Gray500);
    font-weight: 500;
}
.icon{
    display: flex;
    align-items: center;
    margin: 2em 1.5em 0 0 ;
}
#iconimg{
    height: 2.3em;
    margin-right: 1em;
}
.icon p{
    font-weight: 800;
}