body {
    margin: 20px;
    /*
    Challenge:
    Find a web safe font you like, and add it 
    to your card.
    */
    font-family: Tahoma  
}

.avatar {
    width: 150px;
    border: ridge 8px snow;
    border-radius: 10px;
    box-shadow:  1px 1px 2px black, 0 0 25px #fb8500, 0 0 5px #ffb703;

}

.card {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #fefae0;
    color: #8cefe;
    border-bottom: 6px solid #ccd5ae;
    border-radius: 20px
        
    /*
    Challenge:
    Find a color palette you like on Coolors.co
    and use it in your business card.
     */
}

.border-blue:hover {
    border: 3px dashed #e9edc9;
    animation-name: example;
    animation-duration: 4s;
}

@keyframes example {
    animation-timing-function:ease-in
    from {background-color: #d4a373;}
    to {background-color: #faedcd;}

/*
Stretch goals:
Find other ways you can personalize 
the design of your business card, e.g.:
- change the border(s)
- add border radius
- shuffle the layout
- shadows        🤯
- hover effects  🤯🤯
- animations     🤯🤯🤯
*/

