*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background-color: hsl(47, 88%, 63%);
    gap: 20px;
}

p{
    font-size: 16px;
}

img{
    width: 100%;
    border-radius: 10px;
}

.container{
    width: 22%; 
    height: fit-content;
    padding: 25px;
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border: 1px solid #000;
    box-shadow: 7px 7px #000;
}

main{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

header{
    display: flex;
    justify-content: center;
}

.type{
    background-color: hsl(47, 88%, 63%);
    width: fit-content;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: 800;
}

.published{
    font-weight: 600;
}

.above{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.perfil img{
    width: 9%;
    border-radius: 0px;
}

.perfil{
    display: flex;
    align-items: center;
    gap: 15px;
}

.text{
    color: hsl(0, 0%, 42%);
    font-weight: 500;
}

.perfil p {
    font-weight: 800;
}

h1{
    font-weight: 800;
    font-size: 24px;
}

@media only screen and (max-width: 1300px) {
    .container{
        width: 30%;
    }
}

@media only screen and (max-width: 900px) {
    .container{
        width: 40%;
    }
}

@media only screen and (max-width: 650px) {
    .container{
        width: 50%;
    }
}

@media only screen and (max-width: 550px) {
    .container{
        width: 80%;
    }
}