@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/poppins/Poppins-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "Poppins", system-ui, sans-serif;
  --acs-blue: #089DD9;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  box-sizing: border-box;
}

.wrapper {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  position: relative;
}

.logo {
  position: absolute;
  top: 60px;
  right: 120px;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

h1, h2 {
  color: var(--acs-blue)
}

h2 {
  margin-top: 24px;
}

span {
  font-weight: 600;
  font-style: italic;
}

@media screen and (max-width: 900px) {
  .content {
    padding-left: 30px;
    padding-right: 30px;
    
  }
}

@media screen and (max-width: 700px) {
  .logo {
    top: 30px;
    right: 30px;
  }
}

@media screen and (max-width: 500px) {
  .logo {
    display: none;
  }
}