body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #16171a;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
  height: 100vh;
  overflow: hidden;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
    align-items: center;
  }
}

.content {
  text-align: left;
  white-space: normal;
  word-wrap: break-word;
  background-color: transparent;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .content {
    max-height: 90vh;
    padding: 25px 20px;
    text-align: center;
  }
}

.profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 0 0 30px 0;
}

.profile .img {
  flex-shrink: 0;
}

.profile-img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.profile .info h1.up {
  margin: 0;
  font-size: 1.8em;
}

.profile .info h2.down {
  margin: 0;
  font-size: 1.2em;
  color: #555;
}

@media (max-width: 768px) {
  .profile {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .profile .info {
    align-items: center;
    text-align: center;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .profile .info h1.up {
    font-size: 1.5em;
  }

  .profile .info h2.down {
    font-size: 1em;
  }
}

.desc {
  margin: 20px 0;
  font-size: 1.05em;
  line-height: 1.7;
  text-align: justify;
  color: #2c2c2c;
}

@media (max-width: 768px) {
  .desc {
    font-size: 0.95em;
    text-align: justify;
  }
}

.contact {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

.contact a:hover {
  opacity: 0.7;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  background-color: #f0f0f0ae;
}
