:root {
--header-image: url('https://file.garden/aaJPuXRWsEcDcP0P/gifs/IMG_8950.png');
--body-bg-image: url('https://file.garden/aaJPuXRWsEcDcP0P/nemo-spotted-in-the-wild.jpeg');
--content: #ebf2e9;
}

body {
font-family: 'Share Tech', serif;
color: #ebf2e9;
background-color: #000;
background-image: var(--body-bg-image);
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
}

#container {
max-width: 1100px;
margin: 0 auto;
background-image: url("https://file.garden/aaJPuXRWsEcDcP0P/galaxybackground.jpeg");
background-attachment: fixed;
background-size: cover;
background-repeat: no-repeat;
border: 4px double #B4E2EE;
padding: 20px;
border-radius: 10px;
}

#container a {
color: #ebf2e9;
font-weight: bold;
text-decoration: none;
transition: 0.5s;
}

#container a:hover {
color: #6ef462;
font-weight: bold;
letter-spacing: 5px;
}

#header {
width: 100%;
height: 200px;
background-image: var(--header-image);
background-size: 100%;
}

#navbar {
height: 40px;
background-color: #33024d;
width: 100%;
border-radius: 5px;
}

#navbar ul {
display: flex;
padding: 0;
margin: 0;
list-style-type: none;
justify-content: space-evenly;
}

#navbar li {
padding-top: 10px;
}

#navbar li a {
color: #ebf2e9;
font-weight: 800;
text-decoration: none;
}

#navbar li a:hover {
color: #6ef462;
text-decoration-line: none
}

#flex {
display: flex;
}
            
aside {
background-color: #121225;
padding: 20px;
margin-bottom: 30px;
border-radius: 5px;
border: 2px solid #6EF462;
width: 160px;
box-shadow: inset 13px 0px 6px -10px rgb(0 255 0 / 60%), inset -13px 0px 6px -10px rgb(0 255 0 / 60%), inset 0px 13px 6px -10px rgb(0 255 0 / 60%), inset 0px  -13px 6px -10px rgb(0 255 0 / 60%);
font-size: 15px;
}

mainstuff {
margin-bottom: 10px;
margin-right: 10px;
margin-left: 10px;
flex: 1;
order: 2;
border-radius: 5px;
text-align: justify;
max-width: 800px;
}

#leftSidebar {
order: 1;
}

#rightSidebar {
order: 3;
}

footer {
background-color: #28095A;
width: 100%;
height: 40px;
border-radius: 5px;
text-align: center;
align-content: center;
}

h1,
h2,
h3,
h4 {
color: #ECA7DD;
font-family: 'Silkscreen', serif;
}

h1 {
font-size: 25px;
text-align: center;
}

h2 {
  font-size: 17px;
}

strong {
color: #ED64F5;
}
            
ul {
padding-left: 20px;
}
            
.box {
background-color: #121225;
padding: 20px;
border-radius: 5px;
margin-bottom: 20px;
border: 2px solid #6EF462;
box-shadow: inset 13px 0px 6px -10px rgb(0 255 0 / 60%), inset -13px 0px 6px -10px rgb(0 255 0 / 60%), inset 0px 13px 6px -10px rgb(0 255 0 / 60%), inset 0px -13px 6px -10px rgb(0 255 0 / 60%);
}

aside .box {
background-color: #28095A;
border: 2px dotted #6ef462;
padding: 10px;
color: #ebf2e9;
border-radius: 5px;
margin-bottom: 10px;
overflow: scroll;
overflow-x: hidden;
height: 21em;
box-shadow: none;
font-size: 12px;
font-family: 'Courier New', serif;
letter-spacing: 1px;
font-weight: bold;
}

.disk {
object-fit: cover;
-webkit-mask-image: url(https://file.garden/aaJPuXRWsEcDcP0P/IMG_9043.png);
-webkit-mask-size: 100%;
-webkit-mask-repeat: no-repeat;
-webkit-mask-position: center;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-name: spin;
animation-timing-function: linear;
width: 200px;
height: 200px;
    }

    @keyframes spin {
        from { transform: rotate(0deg) }
        to { transform: rotate(360deg) }
    }

@keyframes glow {
0% {
text-shadow: 0 0 15px #ec1de5;
}

50% {
text-shadow: none;
}

100% {
text-shadow: 0 0 15px #ec1de5;
}
}

@-webkit-keyframes glow {
0% {
text-shadow: 0 0 15px #6ef462;
}

50% {
text-shadow: 0 0 0;
}

100% {
text-shadow: 0 0 15px #6ef462;
}
}

#glowy {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #FAFAFA;
font-weight:bold;
-webkit-animation: glow 2.0s linear infinite;
-moz-animation: glow 2.0s linear infinite;
-ms-animation: glow 2.0s linear infinite;
}

#topBar {
width: 100%;
height: 30px;
padding: 10px;
font-size: smaller;
background-color: #13092D;
}

@media only screen and (max-width: 800px) {
#flex {
flex-wrap: wrap;
}

aside {
width: 100%;
}

mainstuff {
order: 1;
}

#leftSidebar {
order: 2;
}

#rightSidebar {
order: 3;
}

#navbar ul {
flex-wrap: wrap;
}
}