@font-face {
    font-family: "Fixedsys Excelsior";
    src: url("fonts/Fixedsys Excelsior.woff2");
}

html {
    background: url(images/bg.png) #403d4b 80px 10px;
    scrollbar-color: #656380 transparent;
}

body {
    image-rendering: smooth;
    font-family: "Fixedsys Excelsior", monospace;
    text-align: center;
    font-size: 20px;
    color: #dbe4ff;
}

header {
    background-image: linear-gradient(90deg,#a394ae, #ab5f5f);
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px;
    border: ridge 12px black;
    border-radius: 1.5px;
}
.rotate {
  animation: rotation 8s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}


h1 {
    font-size: 80px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

section {
    background-color: #444444c0;
    text-align: justify;
    padding: 10px;
    margin: 20px;
    border: solid 4px #b0b4ca;
    border-radius: 1.5px;
    margin: 20px 20px;
}

@media (max-aspect-ratio: 1.05) {
    header {
        margin-left: 0;
        margin-right: 0
    }
}

footer {
    position: absolute;
    left: 0;
    padding: 0;
    width: 100%;
    height: 72px;
    background-image: linear-gradient(90deg, #111111, #2d2d2d 180px);
    background-color: black;
    color: white;
    font-size: small;
}

aside {
    width: 650px;
    background-color: #f1f1f1;
    padding: 20px;
    margin: 0px 20px;
}

aside nav ul {
    list-style: none;
    padding: 0;
}

aside nav ul li {
    margin: 10px 0;
}

aside nav ul li a {
    text-decoration: none;
    color: #333;
}

main {
    flex: 1;
    padding: 20px;
}

.sideText {
    writing-mode: vertical-lr;
    color: white;
    position: absolute;
    height: 100%;
    text-align: center;
}

pixelated, .pixelated, html {
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

a:link {
    color: #ff7293
}

a:visited {
    color: #ff65a8
}

a:hover {
    color: #ff4141
}

a:active {
    color: #d00000
}

#quote, .center {
    display: flex;
    justify-content: center;
}