* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  background-color: #232323;
  color: #fff;
  padding: 20px;
}

.container {
  width: 300px;
  background-color: #232323;
  padding: 20px;
  border-radius: 15px;
  /* height: 50vh; */
}

.card {
  width: 100%;
  padding: 100px 0px;
}

.card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card__job {
  font-size: 13px;
}

.card__detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.card__header {
  font-size: 20px;
}

.card__name {
  font-size: 14px;
}

.card__img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.card__img img {
  width: 100%;
}

.card__btn {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-top: 40px;
}

.card__btn button {
  border: none;
  outline: none;
  /* padding: 10px 20px; */
  border-radius: 10px;
  text-transform: uppercase;
  background-color: #9B1D20;
  color: #fff;
}
.card__btn button a {
  color: #fff;
  text-decoration: none;
  width: 100%;
}

a:link, a:visited {
  background-color: #9B1D20;
  color: white;
  padding: 14px 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: red;
}