/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

:root {
  --main: rgb(76, 0, 255);
  --purple: rgb(120, 48, 255);
  --orange: rgb(255, 99, 37);
  --grey: rgb(223, 223, 223);
}

body {
  background-color: var(--main);

  background-attachment: fixed;
  
  
  background-size: 32px 32px;
  background-image:
    linear-gradient(to right, white 1px, transparent 1px),
    linear-gradient(to bottom, white 1px, transparent 1px);
  

  /*background-image: linear-gradient(to bottom, var(--accent), rgb(142, 167, 0));*/

  color: black;

  overflow-wrap: break-word;

  font-family: 'Courier New', Courier, monospace;
}

.layout {
  display: flex;

  flex-wrap: wrap;
  align-items: flex-start;

  max-width: 1000px;

  margin-left: auto;
  margin-right: auto;
}

.mainBox {
  max-width: 700px;
  margin: 5px;
}

.panel {
  background-color: var(--grey);

  border-style: double;
  border-radius: 10px;

  padding: 50px;

  position: relative;

  margin-bottom: 10px;
}

h1 {
  font-family: pocketball;

  font-size: 50px;

  overflow-wrap: break-word;

  color: white;
  background-color: var(--main);
  padding: 5px;
}

h2 {
  font-family: dotmatrix;
  font-weight: bold;

  background-color: white;
  color: black;
  padding: 5px
}

h3 {
  font-family: dotmatrix;
  font-weight: bold;
  background-color: white;
  padding: 5px;
}

p {
  background-color: white;
  text-indent: 15px;

  padding: 5px
}

li {
  background-color: white;

  padding: 5px;
  margin: 5px;
}

a {
  color: black;
}

a:hover {
  color: white;
  background-color: black;
}

img {
  z-index: 1000000000000;
}

.backButton {
  background-color: black;
  color: white;

  text-decoration: none;

  font-family: dotmatrix;
  font-size: 24px;
  font-weight: bold;

  padding: 5px;
  margin: 5px;

  border-style: double;
  border-radius: 10px
}

.backButton:hover {
  background-color: white;
  color: black;
  border-color: black;
}

.sidebar {
  display: flex;
  flex-direction: column;

  width: 258px;
}

.sidebarButton {
  margin: 5px
}

.titleBox {
  background-color: black;
  margin: 5px;
}

.title {
  font-family: blackout;
  font-weight: normal;
  font-size: 96px;
  color: white;
  background-color: transparent;

  text-align: end;

  margin-left: 10px;
  margin-right: 10px;

  line-height: 17px;
}

.ozzZone {
  position: relative;
}

#stuffThatNeedsToAvoidOzz {
  margin-right: 150px;
}

#stuffThatNeedsToAvoidOzzLaptop {
  margin-left: 125px;
}

.ozz {
  position: absolute;

  right: -128px;
  bottom: 0px;

  width: 256px;

  animation-name: ozzAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.ozzLaptop {
  position: absolute;

  left: -64px;
  bottom: -64px;

  width: 232px;

  animation-name: ozzLaptopAnimation;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes ozzAnimation {
  0% {
    rotate: 5deg;
  }
  50% {
    rotate: -5deg;
  }
  100% {
    rotate: 5deg;
  }
}

@keyframes ozzLaptopAnimation {
  0% {
    transform: scale(1.05, 0.95);
  }
  50% {
    transform: scale(0.95, 1.05);
  }
  100% {
    transform: scale(1.05, 0.95);
  }
}

@font-face {
  font-family: invalid;
  src: url(/fonts/INVALID_.TTF);
}

@font-face {
  font-family: blackout;
  src: url(/fonts/BLACKOUT.TTF);
}

@font-face {
  font-family: m290;
  src: url(/fonts/M290.ttf);
}

@font-face {
  font-family: pocketball;
  src: url(/fonts/pocketball.ttf);
}

@font-face {
  font-family: sharpz;
  font-weight: normal;
  src: url(/fonts/Sharpz.ttf);
}

@font-face {
  font-family: cross;
  font-weight: normal;
  src: url(/fonts/Cross.ttf);
}

@font-face {
  font-family: bluescreen;
  font-weight: normal;
  src: url(/fonts/Blue\ Screen\ Personal\ Use.ttf);
}

@font-face {
  font-family: dotmatrix;
  font-weight: normal;
  src: url(/fonts/DOTMATRI.TTF);
}

@font-face {
  font-family: dotmatrix;
  font-weight: bold;
  src: url(/fonts/DOTMBold.TTF);
}