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

.avatar {
  width: 150px;
  border-radius: 20px;
}

.avatar:hover {
  box-shadow: 4px 4px 4px #f77f00;
}

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

.card:hover {
  background: #eae2b7;
  color: #003049;
  border-bottom: 6px solid #003049;
}

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

.glowing::before {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  top: 10px;
  bottom: 10px;
  background: linear-gradient(
    45deg,
    #e8f74d,
    #ff6600d9,
    #00ff66,
    #13ff13,
    #ad27ad,
    #bd2681,
    #6512b9,
    #ff3300de,
    #5aabde
  );
  background-size: 400%;

  height: 180px;
  z-index: -1;
  animation: glower 20s linear infinite;
  border-radius: 20px;
  width: 430px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;

  border-radius: 20px;
}

@keyframes glower {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}
/*
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"
*/
