@import url("https://fonts.googleapis.com/css2?family=Inter&family=Tenor+Sans&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}

@media (max-width: 640px) {
  body {
    padding: 1rem;
  }
}

.area {
  width: 100%;
  max-width: 580px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 0px;
  outline: none;
  font-size: 14px;
  line-height: 20px;
  color: #000;
  border: 1px solid #8e8e8e;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 40px;
}

@media (max-width: 640px) {
  .container {
    padding: 24px 20px;
  }
}

.image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  border: 1px solid #e8e8e8;
  margin-bottom: 1rem;
}

.button {
  font-family: "Tenor Sans", sans-serif;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #000;
  background-color: #e8e8e8;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
  transition: 0.3s linear;
}

@media (max-width: 640px) {
  .button {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}

.button:hover {
  background-color: #000;
  color: #fff;
}

.socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 21rem;
}
