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

.avatar {
    width: 200px;
}

.card {
    width: 400px;
    margin: 100px auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #ffffff;
    color: #2b2839;    
    /*
    Challenge:
    Find a color palette you like on Coolors.co
    and use it in your business card.
     */
     box-shadow: 0 0 20px #ffe7ad;
     
     transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.linkedin-link {
    font-weight: 900;
    text-decoration: none;
    color: #4285F4;
}

.animation {
    animation: moving 3s ease-in-out infinite alternate-reverse;
}

.animation:hover {
    animation-play-state: paused;
}

@keyframes moving {
     0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px);
    }
}

.card:hover {
    transform: translateY(-10px) scale(1.1);
    transition: 1s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.info-container {
    align-content: center;
}

.gradient-border {
    border: 5px solid;
    border-image-slice: 1;
    border-image-source: conic-gradient(#EA4335, #4285F4, #34A853, #FBBC05, #EA4335);
}


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

/*
Final challenge:
Download the code to your local computer and place it
in a folder called "business-card"
*/
