@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&family=Roboto:ital,wght@0,100;0,500;0,700;0,900;1,400;1,500;1,700;1,900&display=swap');
:root {
  --left-side : calc(min(600px,100vw - 200px));
}
* {
  box-sizing: border-box;
}
body {
  padding: 0;
  margin: 0;
  background-color: #0033a0;  
  font-family: Roboto;
}



h1,h2,h3 {
  font-family: "Architects Daughter";
  margin-bottom: 2px;  
  color: #001140;
}

body::after {
  background-image: url('/styles/default/pond.jpg');
  background-size: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 0;
  content: " ";
  display: block;
  top: 0;
  left: 0;
  opacity: 0.6;
  animation: fade-out 3s;  
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page-wrapper {
  position: relative;
  z-index: 1;
  width: var(--left-side);
  background-color: #cfcfef;
  color: #222;  
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  animation: fade-in 2s;  
}

aside {
  position: fixed;
  top: 20px;
  right: 0;
  width: 200px;
  background-color: #ccc;
  padding: 2em;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
}

aside ul {
  padding: 0;
}
aside ul li {
  list-style: '▶ ';
  margin-bottom: 0.5em;
}

a {
  color: inherit;  
}

aside a {
  text-decoration: none;
}

a:hover {
  color: #0033a0;
}