* {
    box-sizing: border-box;
    margin: 0;

}

body {
    background-color: hsl(47, 88%, 63%);
    min-height: 100vh;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}


.figtree-medium {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


.figtree-extrabold {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
}

.main {
    width: 100%;
    max-width: 384px;
    height: auto;
    background-color: hsl(0, 0%, 100%);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid black;
    box-shadow: 8px 8px 0px #000000;
}

.header {
    width: 336px;
    height: 200px;
    border-radius: 10px;
}

.content {
    width: 336px;
    height: 194px;
    margin-top: 24px;
    margin-bottom: 24px;
}

button {
    background-color: hsl(47, 88%, 63%);
    width: 82px;
    height: 29px;
    margin-right: 254px;
    margin-bottom: 12px;
    line-height: 150%;
    font-size: 14px;
    border-radius: 4px;
    border: none;
}

#date {
    line-height: 150%;
    font-size: 14px;
    margin-right: 193px;
    margin-bottom: 12px;
}

#h1 {
    line-height: 150%;
    font-size: 24px;
    margin-bottom: 12px;
    width: 336px;
    height: 36px;
    transition: all 0.3s;
}

#text {
    line-height: 150%;
    font-size: 16px;
}

.footer {
    width: 129px;
    height: 32px;
    display: flex;
    justify-content: flex-start;
    flex-direction: row;
}

.footer p {
    font-size: 14px;
    line-height: 150%;
    margin: 5.5px 0px 5.5px 12px;
}

#h1:hover {
    line-height: 150%;
    font-size: 14px;
    color: #F4D04E;
    width: 336px;
    height: 36px;
    padding: 5px;
    box-sizing: border-box;
}





