body {
  margin: 0px;
  padding: 0px;
  font-family: ui-rounded, -apple-system, BlinkMacSystemFont, Helvetica, Arial;
  font-size: 1em;
  font-weight: 200;
  color: white;
  background: rgb(83,33,100);
  background: radial-gradient(circle, rgba(83,33,100,1) 0%, rgba(39,24,69,1) 100%);
}

h1 {
  font-weight: 600;
}

h2 {
  font-weight: 400;
}

h3 {
  font-weight: 400;
}

.page-container {
  border-radius: 10px;
  box-shadow:  0 0 10px  rgba(0,0,0,0.6);
  -moz-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
  -webkit-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
  -o-box-shadow: 0 0 10px  rgba(0,0,0,0.6);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(50px);
  width: 720px;
  margin: auto;
  margin-top: 50px;
  margin-bottom: 50px;
  padding: 0;
}

header > :first-child {
    display: flex;
    align-items: center;
    margin-left: 40px;
    margin-right: 40px;
}

.logo-img {
    margin-top: 30px;
    max-width: 200px;
    max-height: 200px;
}

nav > :first-child {
    display: flex;
    align-items: center;
}

.top-text-container {
  display:flex;
  align-items:center;
  margin: 20px;
}


.feature-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.feature {
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
}

hr {
  border: 1px solid rgba(255,255,255,0.1);
}

a {
  color: rgba(132,1,187,1.0);
  text-decoration: none;
}

.privacy-container {
  padding: 20px;
}

.feature img {
    margin-top: 20px;
    max-width: 350px;
    height: 100%;
}

.feature-detail {
    margin-left: 20px;
    margin-right: 20px;
}

.reversed {
  flex-direction: row-reverse;
  text-align: right;
}

footer {
    width: 100%;
    padding-bottom: 20px;
}

footer .link-list {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .link-list a {
    margin-right: 30px;
    font-size: 0.8em;
}

footer a {
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}

footer a.twitter {
    width: 20px;
    height: 16px;
    background-image: url('/images/twitter.png');
}

footer a.mail {
    width: 19px;
    height: 15px;
    background-image: url('/images/mail.png');
}

/**
  * Phones
  */

@media (max-width: 720px) {
  .page-container {
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
  
  .logo-img {
    margin-top: 0px;
  }
  
  h1 {
    font-size: 1.5em;
  }
  
  h2 {
    font-size: 1.1em;
  }
  
  h3 {
    font-size: 0.8em;
  }
  
  header > :first-child {
    margin-left: 10px;
    padding-right: 10px;
  }
  
  .logo-img {
    max-width: 40%;
    max-height: 40%;
  }
  
  .feature {
    flex-direction: column-reverse;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
  }
  
  .feature img {
    margin-left: 5%;
    max-width: 90%;
    height: auto;
  }
}
