html {
    background-image: linear-gradient(#243a32, #161410);
    background-repeat: no-repeat;
    min-height: 100dvh;
    box-shadow: 0 0 125px rgba(12, 12, 12, 0.9) inset;
  }

body {
    font-family: "Oswald";
    font-optical-sizing: auto;
    font-weight: 350;
    font-size: 1.15rem;
    font-style: normal;
    color: aliceblue;
    text-shadow: 1.5px 1.5px 3px black;
  }

#title {
    text-align: center;
  }

.page--home {
    text-align: center;
  }

@media only screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    min-width: 100%;
  }
  }

.container {
    display: flex;
    flex-direction: row;
    height: auto;
  }

.home {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    height: 100%;
    animation: slide-down .75s;
  }

.content {
    margin-left: auto;
    margin-right: auto;
    max-width: 35vw;
  }

p, ul, td, ol {
    font-family: "Rokkit";
    font-optical-sizing: auto;
    font-weight: 100;
    font-size: 1.05rem;
    letter-spacing: 0.75px;
    line-height: 1.35;
    text-align: justify;
  }

td {
    padding: 8px;
  }

#hero {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    animation: fadeIn 4s;
  }

hr {
    border: 1.5px solid #c5ac8cd5;
    box-shadow: 3px 3px 6px #07111f;
}

a {
  color: #ffe4c4;
  }

a:link {
    text-decoration: none;
  }

a:visited {
    text-decoration: none;
  }
  
a:hover {
    text-decoration: underline;
  }
  
a:active {
    text-decoration: underline;
  }

blockquote {
    display: block;
    border-left-style: double;
    border-left-color: #3c7a64;
    border-left-width: 8px;
    font-size: 1.15rem;
    color: #f1e7dae0;
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    margin-block: 2.5vh;
    box-shadow: 5px 5px 8px rgb(16, 27, 29);
    background-image: linear-gradient(#34485050, #21263350);
  }

.timespan {
    font-family: "Oswald";
    color: #495153;
    padding-top: 100px;
    animation: slide-up .75s, fadeIn 2s;
  }

@keyframes slide-down {
  from {
    transform: translateY(-100%);
    }

  to {
    transform: translateY(0%);
    }
  }

@keyframes slide-up {
  from {
    transform: translateY(100%);
    }

  to {
    transform: translateY(0%);
    }
  }

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
  }