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

body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Display', sans-serif; 
}

h1 {
  font-size: 22vw;
  font-weight: 700;
  line-height: .8;
  letter-spacing: -1px;
}

div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: black;
  font-size: 40px;
}

a:hover {
  background: chartreuse;
}

@media (max-width:900px) {
  h1 {
    font-size: 120px;
    margin-bottom: 28px;
  }
  div {
    flex-direction: column;
  }
}

@media (max-width:600px) {
  h1 {
    font-size: 60px;
    margin-bottom: 28px;
  }
  a {
    font-size: 24px;
  }
}