@font-face {
    font-family: 'Figtree';
    src: url('./assets/fonts/Figtree-VariableFont_wght.ttf') format('truetype');
}


*{
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(47, 88%, 63%);
    height: 100vh;
    padding: 20px;
    font-family: figtree;
}

.card{
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 500px;
    box-shadow: 10px 10px ;
    border-color: black;
    background-color: hsl(0, 0%, 100%);
    border-radius: 10px;
    border: 2px solid black;  
}

.image{
    border-radius: 20px;
    margin-bottom: 10px;
}

.learning{
    background-color: hsl(47, 88%, 63%);
    border-radius: 5px;
    padding: 5px 8px;
    width: fit-content;
    font-weight: bold;
}

.date{
    margin-top: 15px;
    margin-bottom: 15px;
}

h1 {
    color: black;
    transition: color 0.3s ease-in-out;
    cursor:pointer;
}

h1:hover {
    color: hsl(47, 88%, 63%); /* Amarelo */
}


h2{
    margin-top: 30px;
    opacity: 80%;
    font-weight: 400;
}

.perfil{
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.name{
    margin-left: 15px;
    font-weight: bold;
}