:root {
  font-family: Inter, sans-serif;
  font-feature-settings: "liga" 1, "calt" 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
  :root {
    /* font-family: InterVariable, sans-serif; */
    font-family: "Poppins", sans-serif;
  }
}

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

html {
  scroll-behavior: smooth;
}

/* @link https://utopia.fyi/clamp/calculator?a=320,1200,14—18 */

body {
  font-size: clamp(0.875rem, 0.7841rem + 0.4545vw, 1.125rem);
  color: #292524;
  line-height: 1.4;
}

img {
  display: block;
  max-width: 100%;
}

strong {
  font-weight: 700;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
}

.logo-wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  padding: 30px 4vw 30px 4vw;
  position: relative;
  width: 100%;
}

.logo {
  width: clamp(80px, 9vw, 140px);
  height: auto;
}

.footer {
  align-items: center;
  background-color: #ce656a;
  clip-path: ellipse(180vmax 100% at 40% 100%);
  color: #fff;
  display: grid;
  flex-direction: column;
  font-size: small;
  gap: 30px;
  grid-template-columns: 1fr;
  padding: 100px 4vw 60px 4vw;
  position: relative;

  & a {
    color: white;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    grid-template-columns: auto 1fr auto;
    gap: 60px;
  }
}

.logo-footer {
  width: clamp(80px, 9vw, 140px);
  height: auto;
}

.footer-social {
  display: flex;
  gap: 32px;

  & svg {
    height: 36px;
    width: 36px;
    fill: #fff;
  }
}

.copyright {
  font-size: small;
}

@media screen and (min-width: 768px) {
  .copyright {
    grid-column: span 3;
    text-align: center;
  }
}
