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

body {
  font-family: Arial, sans-serif;
  background: #ffffff;
  color: #111;
}

main {
  min-height: 100vh;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

img {
  width: 140px;
}

h1 {
  margin: auto 0;
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.socials {
  display: flex;
  gap: 24px;
}

.socials a {
  color: #111;
  font-size: 14px;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}