body{
    background-color: #f4D04e;
    margin: 0;
    padding: 0;
}

.main{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    

}

.card{
    display: flex;
    flex-direction: column;
    width: 384px;
    height: 522px;
    justify-content: top;
    background-color: #ffffff;
    border-radius: 20px;
    border: solid 1px #111111;
    filter: drop-shadow(6px 6px #111111);
    transition: filter 0.3s ease;
    margin: 0;
    align-items: center;
    text-align: left;
    
}

.card:hover{
    filter: drop-shadow(12px 12px #111111)
}

.card img{
    width: auto;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 24px;
    margin-top: 24px;
    
    
}

.card .btn{
    font-family: "Figtree", serif;
    font-weight: 800;
    color: #111111;
    background-color: #f4d04e;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    align-self: left;
    border-radius: 4px;
    margin-left: 24px;
    border: 0;
    padding: 6px 12px;
    margin-bottom: 0;
}

.card h4{
    font-family: "Figtree", serif;
    font-weight: 500;
    color: #111111;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    margin-left: 24px;
    margin-top: 12px;
    margin-bottom: 0;
}
.card h1{
    font-family: "Figtree", serif;
    font-weight: 800;
    color: #111111;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
    margin-left: 24px;
    margin-top: 12px;
    margin-bottom: 0;
}
.card h1:hover{
    cursor: pointer;
    color: #f4D04e;
}

.card p{
    font-family: "Figtree", serif;
    font-weight: 500;
    color: #6b6b6b;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    margin-left: 24px;
    margin-top: 12px;
    margin-bottom: 0;
}

.greg{
    display: flex;
    align-items: center;
    margin-left: 24px;
    margin-top: 24px;
    gap: 12px;

}
.greg img{
    width: 32px;
    height: 32px;
    margin: 0;

}
.greg h3{
    margin: 0;
    font-family: "Figtree", serif;
    font-weight: 800;
    color: #111111;
    font-size: 14px;
    line-height: 150%;
}

.attribution{
    font-family: "Figtree", serif;
    font-weight: 500;
    color: #6b6b6b;
    font-size: 8px;
    line-height: 150%;
    margin-top: 4px;

}

