@import url('https://fonts.googleapis.com/css2?family=Open+Sans');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code&display=swap');

@media (prefers-color-scheme: dark) {
    body {
        background-color: rgb(23,25,26);
        color: rgb(241,241,241);
    }

    a {
        color: rgb(241,241,241);
    }
}

a:hover {
  color: cornflowerblue;
}

a {
  text-decoration: none;
}

@media (prefers-color-scheme: light) {
    body {
        background-color: rgb(241,241,241);
        color: rgb(23,25,26);
    }
    a {
        color: rgb(23,25,26);
    }
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid rgb(31, 111, 185);
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: rgb(31, 111, 185) transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
       
h1 {
    font-size: 35px;
    font-weight: 100;
}

* {
    font-family: 'Open Sans', sans-serif;
}
code {
    font-family: 'Fira Code', monospace;
}

body {
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
    min-height: 90vh;
    max-height: 90vh;
    word-wrap:  break-word;
    margin: 0 auto;
}
        
footer {
  position: absolute;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 100vw;
}