:root {
    --yellow: hsl(47, 88%, 63%);
    --white: hsl(0, 0%, 100%);
    --light-gray: hsl(0, 0%, 42%);
    --dark-gray: hsl(0, 0%, 7%);
}

html, body {
    height: 100%;
    margin: auto;
}

html {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body {
    display: grid;
    place-items: center;
    background-color: var(--yellow);
}

main {
    background-color: var(--white);
    border: 1px solid black;
    border-radius: 15px;
    margin: auto;
    width: 425px;
    height: auto;
    box-shadow: 10px 10px;
}

.footer-image {
    display: flex;
    flex-direction: row;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 1rem;
}

#main-img {
    width: 90%;
    padding-top: 1rem;
    border-radius: 14px;
}

h1, span, p {
    margin-left: 20px;
}

span {
    padding-top: 1rem;
}

.img-icon {
    padding-left: 1.5rem;
    padding-bottom: 1rem;
}

.learning {
    background-color: var(--yellow);
    width: 90px;
    height: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 4px;
    padding-bottom: 0.75rem;
}

div p {
    color: var(--light-gray);
}
 







