:root {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
  color: #181818;
  font-size: 1.6rem;
  -webkit-tap-highlight-color: transparent;
}

body {
  padding-top: 11rem;
}

::selection {
  background-color: #d1d4d4;
}

a {
  text-decoration: none;
  padding: 1.3rem 2.4rem;
  background-color: transparent;
  border-radius: 0.8rem;
  transition: background-color 200ms ease;
  font-weight: 500;
  -webkit-user-select: none;
  user-select: none;
}

img {
  -webkit-user-select: none;
  user-select: none;
}

:focus {
  outline: 0;
}

@media (hover: hover) {
  a:hover {
    background-color: #f0f1f1;
  }
}
@media (max-width: 800px) {
  :root {
    font-size: 56%;
  }
}
nav {
  width: 100%;
  display: flex;
  padding: 4rem 10vw;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 4;
  background-color: #ffffff;
}
nav.small {
  display: none;
}
nav > div {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
nav img {
  height: 2.4rem;
}
nav * {
  font-weight: 500;
}
nav .login {
  background-color: #50adae;
  color: #ffffff;
  border-radius: 0.8rem;
}
nav .menu {
  display: none;
  gap: unset;
}
nav .menu:active {
  background-color: #f0f1f1;
}

.logo {
  padding: 0;
}

@media (hover: hover) {
  .logo:hover {
    background-color: transparent;
  }
  .login:hover {
    background-color: #4a9899;
  }
  .menu:hover {
    background-color: #f0f1f1;
  }
}
@media (max-width: 1550px) {
  nav.big {
    padding: 2.4rem;
  }
}
@media (max-width: 1250px) {
  nav.big {
    display: none;
  }
  nav {
    flex-direction: column;
  }
  nav.small {
    display: flex;
    clip-path: polygon(0 0, 100% 0, 100% 11rem, 0 11rem);
    transition: clip-path 200ms ease;
    border-bottom: 2px solid #f0f1f1;
  }
  nav.small .links {
    display: flex;
    flex-direction: column;
    gap: 2.9rem;
    padding-top: 2.9rem;
    align-items: flex-start;
    transition: transform 400ms ease;
  }
  nav.small .menu {
    display: flex;
    width: 4rem;
    height: 4rem;
    padding: 1.3rem;
    border-radius: 0.8rem;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }
  nav.small .menu div {
    width: 100%;
    height: 2px;
    border-radius: 0.8rem;
    background-color: #181818;
  }
  nav.small > div {
    width: 100%;
    justify-content: space-between;
  }
  nav.small > div > div:not(.menu) {
    display: flex;
    gap: 1.6rem;
  }
  body.nav-open nav.small {
    clip-path: polygon(0 0, 100% 0, 100% 120%, 0 120%);
  }
  body.nav-open nav.small > a:not(.login) {
    padding: 0;
  }
}
x-select {
  box-shadow: 0 0 0 2px #f0f1f1;
  border-radius: 0.8rem;
  position: relative;
  height: max-content;
  -webkit-user-select: none;
  user-select: none;
}

x-select button {
  padding: 1.3rem 2.4rem;
  cursor: pointer;
  background-color: transparent;
  transition: background-color 200ms ease;
  border: 0;
}

x-select div[hidden] {
  opacity: 0;
  pointer-events: none;
}

x-select div {
  opacity: 1;
  position: absolute;
  margin-top: 2rem;
  box-shadow: 0 0 0 2px #f0f1f1;
  overflow: hidden;
  display: grid;
  transition: all 200ms ease;
  background-color: #ffffff;
  border-radius: 0.8rem;
}

x-select div * {
  display: grid;
  place-items: center;
  padding: 1.3rem 2.4rem;
  border-radius: 0;
}

x-select button:hover,
x-select button:focus {
  background-color: #f0f1f1;
}

body {
  padding: 13rem 15vw;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  display: flex;
  padding: 4rem 15vw 2rem 15vw;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
}
header img {
  height: 2.4rem;
}

h1 {
  font-size: 5.2rem;
  text-align: center;
  font-weight: 900;
}

.content {
  padding-top: 2.9rem;
  display: grid;
  gap: 4rem;
  max-width: 60rem;
  margin: auto;
}
.content article {
  padding-bottom: 2.4rem;
  margin-top: 2.9rem;
}
.content article h2 {
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
}
.content article p {
  line-height: 1.6em;
}

@media (max-width: 1100px) {
  body {
    padding: 12rem 6vw;
  }
  header {
    padding: 4rem 6vw 2rem 6vw;
  }
  .content article p {
    column-count: 1;
  }
}