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

html {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Anurati;
  src: url(https://cdn.glitch.com/6c0b5eb0-fb06-4eaa-a795-f7034ab636f7%2FAnurati-Regular.otf?v=1622476632088);
}

h4 {
  color: #f2f2f2;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 24pt;
  line-height: 36pt;
}

p {
  color: #f2f2f2;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  font-size: 16pt;
  line-height: 22pt;
}

a {
  color: #f2f2f2;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 12pt;
}

nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-weight: lighter;
  font-size: 16pt;
  line-height: 18pt;
  margin-right: 32px;
}

body {
  width: 100%;
  background-color: #0f030f;
}

nav {
  width: 100%;
  top: 0;
  left: 0px;
  position: fixed;
  padding: 5%;
  display: flex;
  flex-direction: row;
  z-index: 3;
  background: rgba(255, 255, 255, 0.21);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: top 0.5s;
}

main {
  width: 100%;
  text-align: center;
  margin-top: 128px;
  margin-bottom: 40px;
}

main a{
  text-decoration:underline;
}

#title {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}

#text {
  max-width: 80%;
  height: 100%;
  margin: auto;
}

.cta-button {
  display: inline-block;
  background-color: #183d2d;
  color: #ffffff;
  padding: 16px 24px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 32px;
  margin-bottom: 24px;
}

.cta-button:hover {
  background-color: #237652;
  transform: scale(1.1);
}

form{
  width:100%;
  max-width:400px;
  display:none;
  margin:25px auto 0px;
}

.fsection{
  width:100%;
  text-align:left;
  
}

label{
  color:#f2f2f2;
  font-family: "Open Sans", sans-serif;
  font-weight:normal;
  font-size: 12pt;
  line-height: 12px;
  text-align:left;
}

.finput{
  padding:8px 16px;
  border-radius: 8px;
  margin-top:8px;
  margin-bottom:16px;
  width:100%;
}

.submit{
  padding:8px 16px;
  border-radius: 8px;
  margin-top:8px;
  margin-bottom:16px;
}

canvas {
  top: 0;
  z-index: -1;
  position: fixed;
  display: block;
}

footer{
  width:100%;
  padding: 10px 24px;
  bottom: 0;
}
  
footer a{
  color: #a0a0a0;
  text-decoration: underline;
  font-weight: normal;
  font-size: 12pt;
}

footer a:hover{
  text-decoration: underline;
}

footer p{
  font-size: 12pt;
}

#footer-quote{
  padding-bottom:24px;
}


/*Mobil horizontal*/
@media (min-width: 490px) {
  body{
    display: flex;
            flex-direction: column;
            min-height: 100vh;
  }
  nav {
    padding: 24px;
  }
  
  main {
  height:100%;
    flex: 1;
}

  #footer-quote {
    text-align: right;
  }
}

/*iPad vertical*/
@media (min-width: 768px) {
  nav {
    padding: 32px;
  }

  #footer-quote {
    text-align: right;
  }
}

/*Desktop and iPad horizontal*/
@media (min-width: 1040px) {
  p {
    font-size: 18pt;
    line-height: 24pt;
  }
  
  main{
    max-width:880px;
    justify-content:center;
    margin:128px auto;
  }

}

@media (min-width: 1440px) {
  p {
    font-size: 20px;
    line-height: 28px;
  }

  a {
    font-size: 20px;
  }
  
  
  #footer-quote {
    visibility: visible;
  }

  #footer-quote:hover {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
