body {
  font-family: "Inter", sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;

  background-image: url("noise.png");
  background-repeat: repeat;
  background-position: center;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #252525;
  opacity: 0.95;
  pointer-events: none;
  z-index: 1;
}

.profile-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px;
  width: 350px;
  margin: 0;
  border-radius: 1rem;

  background-color: rgb(199, 199, 199);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.582);

  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.solid {
  height: 2px;
  width: 300px;
  background-color: rgb(7, 7, 7);
  margin: 0;
}

.link-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

#description {
  text-align: center;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 18px;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.link {
  margin-top: 15px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;

  background-color: rgb(143, 143, 143);
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;

  width: 250px;
  height: 35px;
  gap: 50px;
}

.button:hover {
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.582);
}

.profile-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.profile-section.show {
  opacity: 1;
  transform: translateY(0);
}
