* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: #f4d04e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card{
    background-color: #fff;
    padding: 15px;
    border-radius: 20px;
    width: 350px;
    height: 450px;
    border: 1px solid black;
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.922);
}

.card img{
    border-radius: 10px;
    width: 300px;
}

.content > *{
   margin-bottom: 15px;
}

.content h4{
    background-color: #f4d04e;
    border-radius: 5px;
    padding: 5px;
    display: inline-block;
    margin-top: 15px;
    font-size: medium;
}

.content h5 {
    font-size: small;
    font-weight: lighter;
}

.content h1{
   font-size: 20px;
}

.content h1:hover {
    cursor: pointer;
    color: #f4d04e;
}

.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;
}

.attribution{
    position: fixed;
    bottom: 10px;
}