@font-face {
    font-family: 'Figtree'; 
    src: url('assets/fonts/static/Figtree-Medium.ttf') format('truetype'); 
    font-weight: 500;
}

@font-face {
    font-family: 'Figtree-bold'; 
    src: url('assets/fonts/static/Figtree-ExtraBold.ttf') format('truetype'); 
    font-weight: 800;
}

*, *::after, *::before {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    font-family: 'Figtree';
    line-height: 1.5;
    background-color: hsl(47, 88%, 63%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: hsl(0, 0%, 100%);
    max-width: 24rem;
    border: 2px solid black;
    border-radius: 20px;
    box-shadow: 10px 10px 0 -2px black;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: scale(0.8);
}

.logo {
    max-width: 100%;
    display: block;
    margin: 22px auto;
    border-radius: 10px;
}

.text {
    margin-left: 22px;
    margin-bottom: 10px;
}

.bold {
    text-align: center;
    background-color: hsl(47, 88%, 63%);
    padding: 2px;
    max-width: 5rem;
    border-radius: 3px;
}

.bold, .date, .name {
    font-size: 14px;
}

.bold, .course, .name {
    font-weight: 800;
}

.paragraph {
    color: hsl(0, 0%, 42%);
}

.avatar-container {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    margin-top: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
}

.name {
    margin-bottom: 10px;
}

.date:hover, .course:hover, .paragraph:hover, .name:hover {
    color:hsl(47, 88%, 63%);
}

.bold:hover{
    background-color: black;
    color: hsl(47, 88%, 63%);
}


