/* ----------------------------------------------------------------------- */
* {
  box-sizing: border-box;
  max-width: 100vw;
  max-height: 100vh;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #1f1f1f;
}
/* ----------------------------------------------------------------------- */
#main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #1a1919;
  overflow: hidden;
}
.card {
  width: 450px;
  max-width: 28rem;
  box-sizing: border-box;
  height: 650px;
  background-color: #2d2c2c;
  border-radius: 15px;
  box-shadow: 0 4px 12px 1px rgba(0, 0, 0, 0.3);
}
/* ----------------------------------------------------------------------- */
.myname {
  text-align: center;
}
.myname h2 {
  color: rgb(194, 233, 220);
  margin-top: 0px;
  margin-bottom: 5px;
}
.myname h3 {
  color: rgb(211, 211, 0);
}
/* ----------------------------------------------------------------------- */
.place-4-avatar {
  display: flex;
  justify-content: center;
}
.avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  margin-top: 18px;
}
/* ----------------------------------------------------------------------- */
.btns {
  display: flex;
  flex-direction: column;
  margin: 5px 17px 5px 17px;
}
.btns button {
  padding: 16px 24px;
  background-color: #444;
  color: #fff;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, color 0.2s ease;
  margin: 7px 0px 7px 0px;
  font-size: 18px;
}
.btns button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  background-color: #666;
  color: #ffcc00;
}
/* ----------------------------------------------------------------------- */
@media (max-width: 768px) {
  .card {
    width: 94%;
    height: 97%;
  }
  .avatar {
    width: 115px;
    height: 115px;
  }
  .illia {
    margin-top: 5px;
  }
  .myname h2 {
    font-size: 33px;
  }
  .myname h3 {
    margin: 3px 10px 5px 10px;
  }
  /* ----------------------------------------------------------------------- */
  @media (max-width: 480px) {
    .card {
      max-width: 90%;
      width: 94%;
      height: 97%;
    }
    .avatar {
      width: 100px;
      height: 100px;
    }
  }
  /* ----------------------------------------------------------------------- */
  @media (max-width: 440px) {
    .myname h2 {
      font-size: 33px;
      margin-bottom: 13px;
    }
    .myname h3 {
      margin: 3px 10px 5px 10px;
    }
    .btns button {
      padding: 14px;
      font-size: 19px;
    }
  }
  /* ----------------------------------------------------------------------- */
  @media (min-width: 481px) and (max-width: 768px) {
    .card {
      max-width: 90%;
      width: 94%;
      height: 97%;
    }
  }
}
/* ----------------------------------------------------------------------- */
