*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-style: normal;
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #f4d04e;
}

.card {
    height: 98vh;
    width: 100vw;

    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
}

main {
    height: 480px;
    width: 360px;
    background-color: white;
    border-radius: 20px;
}

section {
    background-color: white;
    padding: 20px;
    border: solid 1px black;
    border-radius: 15px;
    box-shadow: 10px 10px 0px black;
}

.topCard {
    display: flex;
    flex-flow: column wrap;
    align-content: center;
    align-items: center;
}

.mainImg {
    width: 320px;
    border-radius: 15px;
}

.text p, h1 {
    margin-top: 10px;
}

.text h2 {
    width: 90px;
    background-color: #f4d04e;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    padding: 3px;
    margin-top: 20px;
    border-radius: 5px;
}

.firstP {
    font-size: 15px;
}

.text h1 {
    font-size: 23px;
    font-weight: 800;
}

.text h1:active {
    color: #f4d04e;
}

.text h1:hover {
    cursor: pointer;
}

.SecP {
    color: #6b6b6b;
    font-size: 14px;
    font-weight: 500;
}

.avatar {
    margin-top: 20px;
    display: flex;
}

.avatarImg {
    width: 35px;
}

.avatar p {
    font-weight: 800;
    padding: 5px 5px 5px 14px;
}

.attribution { 
    font-size: 11px; text-align: center;
}

.attribution a { 
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.attribution a:hover {
    color: rgb(65, 65, 248);
}