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

.avatar {
    width: 150px;
    border: #2b2839 ridge 2px;
    border-radius: 6px;
}

.card {
    width: 400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #ccd5ae; 
    color: #2b2839;
    border-bottom: 6px solid #d8cefe;
    border: #2b2839 ridge 4px;
    writing-mode: horizontal-tb;
    border-radius: 8px;
    flex-direction: row-reverse;
    /*
    Challenge:
    Find a color palette you like on Coolors.co
    and use it in your business card.
     */
}

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

.shadow {
    text-shadow: 2px 2px 4px grey;
}

@keyframes myAnimation {
    from {background-color: red;}
    to {background-color: yellow;}
}
h4:hover {
    background-color:beige;
}

h4 {
    animation-name: myAnimation;
    animation-duration: 5s;
}
/*
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     🤯🤯🤯
*/

