@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  font-family: "Inter", sans-serif;
}

body {
  background: #141414;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  height: 700px;
  width: 450px;
  background: #1f1f1f;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.image-container img {
  border-radius: 50%;
  height: 120px;
  margin-top: 50px;
  margin-bottom: 25px;
}

.info-container {
  /* gap: 10px; */
  align-items: center;
  flex-wrap: wrap;
}

.info-container h1 {
  color: #ffffff;
  font-weight: 400;
  font-size: 36px;
}

.info-container h1,
.info-container h3 {
  margin: 0;
}

.info-container h3 {
  color: #c5f82a;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 30px;
}

.info-container p {
  color: #ffffff;
  margin-bottom: 25px;
}

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

.links-container a {
  height: 50px;
  width: 400px;
  background: #333333;
  margin-bottom: 15px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .5s;
}

.links-container a:hover {
  background: #c5f82a;
  color: #333333;
}

@media screen and (max-width: 390px) {
  .container {
    width: 350px;
  }
  .links-container a {
    width: 300px;
  }
}