:root {
  --purple: #361374;
  --white: #fff;
  --pink: #DA3268;

  --font: 'Lexend', sans-serif;
}

::selection {
  background: var(--pink);
}

html,h1,p,a,span,div {
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.2;
  font-size: 16px;
}

a {
  text-decoration: underline;
  transition: all 0.15s ease-in-out;
}

.container {
  display: flex;
  flex-wrap: wrap;
  padding: 5vw;
  max-width: 100vw;
  min-height: 100vh;
  background: var(--purple);
  color: var(--white);
  align-items: stretch;
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.row-bottom {
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 3rem;
}

.logo {
  width: clamp(180px, 40%, 260px);
  max-height: 53px;
  vertical-align: top;
}

.linkedin {
  width: clamp(30px, 6vw, 36px);
  opacity: 1;
  transition: opacity 0.15s ease-in-out;
}

.linkedin:hover {
  opacity: 0.5;
}

.headline {
  max-width: 1050px;
  width: 85%;
  font-size: clamp(30px, 6.5vw, 90px);
  padding: 6rem 0;
}

.cta,
.cta a {
  display: block;
  margin-top: 0.8rem;
  font-size: 24px;
  font-size: clamp(18px, 3vw, 24px);
  transition: color 0.15s ease-in-out;
}

.cta a:hover {
  color: var(--pink);
}

.coming-soon {
  font-size: 14px;
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

@media screen and (max-width: 400px) {
  .headline {
    width: 100%;
  }
}