body {
    margin: 20px;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
}

.avatar {
    width: 180px;
    border-radius: 20px;
    border: 2px solid #c36f09;
}

.card {
    border-radius: 20px;
    width: 450px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    background: #fcefb4;
    color: #a63c06;
    border-bottom: 8px solid #fdb833;
    border-right: 8px solid #fdb833;
}

.myinfo {
    margin: auto 0;
}

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

.hover-underline {
  position: relative;
  display: inline-block;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #a63c06, #eeba0b);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}