body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

main {
  max-width: 600px;
  padding: 40px 20px;
}

img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

h1 {
  font-size: 2em;
  font-weight: 600;
  color: #ffffff;
  margin: 10px 0;
}

h1 span {
  color: #00c8ff;
}

p {
  color: #bdbdbd;
  margin-bottom: 30px;
  font-size: 1em;
}

nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

button {
  width: 80px;
  height: 80px;
  background: url("contact/default.svg") no-repeat center / contain;
  border: none;
  cursor: pointer;
  transition: background-image .2s ease-in-out;
}

button:hover {
  background: url("contact/active.svg") no-repeat center / contain;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.button-group button {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
}

a {
  text-decoration: none;
  color: #121212;
  background-color: #00c8ff;
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1em;
  white-space: nowrap;
}

a:hover {
  background-color: #00b2e6;
}

@media (min-width: 600px) {
  nav {
    flex-direction: row;
    justify-content: center;
    gap: 18px;
  }
}
