*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: #f4d04e;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.card{
    background-color: #fff;
    border: 1px solid black;
    border-radius: 1rem;
    height: 450px;
    width: 350px;
    padding: 15px;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.922);
}
.card img{
    width: 300px;
    border-radius: 1rem;
}
.content > *{
    margin-bottom: 15px;
}
.content h4{
    margin-top: 15px;
    border-radius: 5px;
    padding: 5px;
    background-color: #f4d04e;
    display: inline-block;
}
.content h5 {
    font-size: small;
    font-weight: lighter;
}
.content h1{
    font-size: 20px;
}
.content h1:hover{
    color: #f4d04e;
    cursor: pointer;
}
.content p{
    font-size: 15px;
    color: #6b6b6b;
}
.footer{
    display: flex;
}
.footer img{
    width: 45px;
    height: 45px;
}
.footer p{
    font-weight: bolder;
    color: #000;
    margin-top: 15px;
    margin-left: 10px;
    font-size: 14px;
}
.attribute{
    position: fixed;
    bottom: 10px;
}

