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

.avatar {
    width: 150px;
    height: 150px;
    border: 2px solid #10295A;
    border-radius: 10px;
    box-shadow: 2px 2px 1px #10295A;
    transition: .6s ease-in-out;
}

.avatar:hover {
    width: 175px;
    height: 175px;
    box-shadow: 10px 10px 5px #10295A;
    transition: .6s ease-in-out
}

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

.border-blue {
    border: 1px dotted blue;
}

/*
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     🤯🤯🤯
*/

