@import url("https://fonts.googleapis.com/css2?family=Allura&family=Oswald:wght@200;300;400;500;600;700&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;600;700;800;900&family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --yellow: #FFC921;
  --red: #D92830;
  --black: #111111;
  --white: #ffffff;
  --bg-white: #F1F3F6;
}

main {
  min-height: 100vh;
  width: 100%;
  background-color: var(--bg-white);
  display: grid;
  place-items: center;
  padding-bottom: 40px;
  background-color: #f1f3f6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23dcdcdc' fill-opacity='0.54'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

header {
  height: 65px;
  width: 100%;
  background-color: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 0 30px;
}
header .logo {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
}
header .logo img {
  height: 50px;
  width: 60px;
}
header .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
}
header .btns a {
  text-decoration: none;
}
header .btns a button {
  border: none;
  background-color: var(--black);
  outline: none;
  color: var(--bg-white);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 15px;
  margin: 15px;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  opacity: 0.75;
}
header .btns a button:hover {
  opacity: 1;
}

section {
  min-height: 100vh;
  width: 80%;
  background-color: var(--white);
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 30px 45px;
}
section .head {
  font-size: 3rem;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  text-align: center;
}
section .txt {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  font-family: "Raleway", sans-serif;
  line-height: 1.75rem;
  text-align: left;
  margin-top: 25px;
}
section .txt p {
  margin-bottom: 25px;
}
section .txt p a {
  color: var(--red);
  text-decoration: none;
}

@media (max-width: 600px) {
  header {
    padding: 0 10px;
  }
  header .logo {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
  }
  header .logo img {
    height: 35px;
    width: 40px;
  }
  header .btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  header .btns a {
    text-decoration: none;
  }
  header .btns a button {
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 5px 10px;
    margin: 5px;
  }
  section {
    padding: 20px 25px;
  }
  section .head {
    font-size: 2rem;
  }
  section .txt {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
}/*# sourceMappingURL=privacy.css.map */