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

html,
body {
  position: relative;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-family: "Roboto";
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: cornflowerblue;
  color: #fff;
}

.titles-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  font-size: 60px;
  font-weight: 6700;
  text-transform: lowercase;
}

.subtitle {
  margin-top: 0;
  font-size: 24px;
  font-weight: 300;
}

.privacy-policy {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
}
.privacy-policy:focus,
.privacy-policy:active {
  color: #fff;
  text-decoration: none;
}

#privacy-policy-modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
}
#privacy-policy-modal .modal-inner {
  position: relative;
  height: 70vh;
  width: 70vw;
  padding: 0 36px;
  background-color: #fff;
  border-radius: 8px;
  color: #555;
  overflow: scroll;
}
#privacy-policy-modal .modal-inner .modal-close {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 8px;
  font-size: 24px;
  cursor: pointer;
}
