body {
    margin: 0;
    font-family: Figtree;
    overflow: hidden;
}
.container {
    background-color: hsl(47 88%, 63%);
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

img {
    width: 200px;
    border-radius: 10px;
    align-self: center;
}

.card {
    background-color: hsl(0, 0%, 100%);
    width: 230px;
    height: 310px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 14px;
    border: 1px solid black;
    box-shadow: 4px 4px;
    margin: 0;
}

.btn {
    background-color: hsl(47 88%, 63%);
    margin-left: 14px;
    border: none;
    border-radius: 2px;
    margin-top: 16px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 10px;
    font-weight: 800;

}

.btn:hover {
    background-color: hsl(47 95%, 50%);
    cursor: pointer;
    transition: 1ms;
}

.date {
    font-size: 10px;
    font-weight: bold;
    margin-left: 14px;
    margin-bottom: 0;
}

.topic {
    font-weight: 800;
    margin-left: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.topic:hover {
    color: hsl(47 88%, 63%);
    cursor: pointer;
}

.description {
    margin-top: 10px;
    font-size: 10px;
    margin-left: 14px;
    color: grey;
}

.profile {
    margin-top: 8px;
    display: flex;
    align-items: center;
}

.avatar {
    width: 25px;
    margin-left: 14px;
}

.name {
    font-size: 10px;
    font-weight: bold;
    margin-left: 8px;
}