@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

* {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
    background: #f4d04e;
}


.main {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    /* padding: 20px; */
    /* align-items: center; */
    width: 375px;
    border-radius: 20px;
    border: 2px solid #000;
    box-shadow: 7px 7px 0 #000;
}


.main .header {
    background: #f4d04e;
    width: 65px;
    padding: 8px 15px;
    border-radius: 5px;
    color: #121212;
    font-weight: 800;
    margin-left: 20px;    
}

.main .date {
    margin-left: 20px;
    margin-bottom: 0;
}

.main .title {
    font-weight: 800;
    color: #121212;
    margin-left: 20px;
    transition: .3s;
}

.main .title:hover {
    color: #f4d04e;
    cursor: pointer;
}

.main .pag {
    margin-top: 0;
    color: #808080;
    margin-left: 20px;
}



.main svg {
    border-radius: 15px;
    align-self: center;
    margin: 20px;
}

.main .footer {
    padding: 10px;
    /* background: green; */
    display: flex;
    align-items: start;
    margin-left: 20px;
    gap: 10px;
}

.main .footer img {
    margin: 10px 10px 10px 0;
    width: 40px;
    height: 40px;
}

.main .footer p {
    color: #121212;
    font-weight: 800;
    align-self: center;
}