body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
  font-family: 'Roboto Mono', monospace;
}

.card{
  padding: 3em;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: center;
  flex: 0.2;
}

.card-header{
  text-align: center;
}

.name{
  margin: 0;
  font-size: 2em;
}

.title{
  margin: 0;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #4d4d4d;
}

.avatar-container{
  width: 100%;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.avatar {
  border-radius: 50%;
  object-fit: cover;
}

.description{
  margin: 0;
  font-size: 1em;
  margin-top: 10px;
  text-align: center;
}

.card-footer{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

a {
  text-decoration: none;
  color: #000;
  border: 1px solid #cacaca;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

a:hover{
  background-color: #000;
  color: #fff;
}

@media (max-width: 768px){
  .card{
    flex: 0.9;
    padding: 1em;
  }

  .card-header{
    flex-direction: column;
    gap: 10px;
  }

  .name{
    font-size: 1.5em;
    text-align: center;
  }

  .title{
    font-size: 1em;
    justify-content: center;
  }

  .description{
    font-size: 0.8em;
    text-align: center;
  }

  .card-footer{
    flex-direction: column;
    gap: 10px;
  }
}