html {
  font-size: 62.5%;
  font-family: "Myriad Pro", Myriad, "Liberation Sans", "Nimbus Sans L",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
    font-size: 1.3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.container {
  padding: 50px 10px;
  width: 100%;
  max-width: 360px;  
  border-radius: 10px;
  background: linear-gradient(
    -45deg, #27a451 0, #006eb4 100%);
    color: white;
}
.img-avatar {
  text-align: center;
}
.img-avatar img {
  border-radius: 130px;
  height: 130px;
  width: 130px;
  object-fit: cover; 
}
.title {
  padding-top: 20px;
  padding-bottom: 7px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  color:yellow ;
  font-size: 1.6rem;
}
.position {
    text-align: center;
    padding-bottom: 20px;
    color: lightyellow;
    font-size: 1.5rem;
}

.company {
    font-weight: bold;
    text-transform: uppercase;
}
.info-detail {
    padding-top: 7px;
}

.email {
  padding-top: 20px;
}

a, a:link, a:visited, a:hover, a:active  {
  text-decoration: none;
  color: white;
}