/*==========================
  IMPORTS
==========================*/
/* Import Quicksand font */
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/*==========================
  VARIABLES
==========================*/
:root {
  --color-background-root: #ffffff;
  --color-text: #303030;
  --color-link: #422599;
}

/*==========================
    CSS RESET
   ==========================*/
*,
:after,
:before {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  min-width: 300px;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: Quicksand, Segoe UI, Roboto, Ubuntu, Helvetica Neue, sans-serif;
  font-size: 100%;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background: var(--color-background-root);
}

@media (max-width: 600px) {
  h1 {
    font-size: 24px;
  }
}

@media (max-width: 450px) {
  h1 {
    font-size: 18px;
  }
}

.root {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  min-height: 100%;
  background: var(--color-background-root);
}

.privacy {
  padding: 20px;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.subtitle {
  padding-top: 20px;
  text-align: center;
  max-width: 400px;
}

.back-link {
  margin-bottom: 10px;
  color: var(--color-link);
  text-decoration: none;
}

.logo {
  display: flex;
  max-width: 60px;
  width: auto;
  margin-right: 14px;
  border-radius: 200px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.header {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}
