*,
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  background-color: #f0f0f0;
}

main {
  width: 90%;
  max-width: 850px;
  height: fit-content;
  display: flex;
  margin: auto;
  gap: 10px;
}

section {
  display: flex;
  gap: 10%;
  justify-content: center;
  align-items: center;
}

.profile-picture {
  width: 30%;
  border-radius: 20px;
}

.profile-picture img {
  width: 100%;
  border-radius: 20px;
}

.profile-info h1 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.profile-info p {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  font-size: 20px;
}

.profile-info a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  border: 2px solid #000;
  border-radius: 6px;
  width: 100%;
  margin-top: 20px;

  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.profile-info a:hover {
  background: #ccc;
}

.profile-info a img {
  height: 30px;
}

@media (max-width: 768px) {
  section {
    flex-direction: column;
    gap: 30px;
  }
}
