@import url("https://fonts.googleapis.com/css?family=Comfortaa:300,400,600,700&display=swap");

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

html {
  height: 100%;
}

body {
  background-image: linear-gradient(
      rgba(60, 129, 112, 0.8),
      rgba(30, 67, 58, 0.8)
    ),
    url("../images/city.jpg");
  background-size: cover;
  font-family: "Comfortaa";
  color: #fff;
  height: 100%;
  display: flex;
  background-attachment: fixed;
  overflow-y: scroll;
}

h1 {
  font-size: 26;
  font-weight: 300;
}

h2 {
  font-weight: 300;
}

.page-wrapper {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.page-privacy {
  padding: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-privacy h1 {
  text-align: center;
}

.page-privacy p {
  padding: 12px;
}

.privacy-links {
  text-align: center;
}

.page-text {
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

ul {
  padding-left: 24px;
}

a:link,
a:active,
a:visited {
  color: #fff;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 250px;
}

.page-footer {
  justify-self: flex-end;
}
