@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Oswald:wght@200..700&display=swap");

* {
  margin: 0;
  padding: 0;
}
html,
body {
  font-size: 12px;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  font-family: "Inter", sans-serif;
}
article {
  width: 100vw;
  min-height: 100dvh;
  scroll-snap-align: start;
}
h1,
h2,
h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 2rem + 5vw, 6rem);
}
p {
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: "Inter", sans-serif;
}

.content{
    background-color: salmon;
}
.content .container {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.row{
   display: flex;
  max-width: 1240px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap:2rem;
}
