/* 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 {
  --container-w: 650; /* no units so we can do division */
  --container-h: 490; /* no units so we can do division */
  --logo-w: 80px;
  --logo-h: 40px;
  --duration-y: 2s;
  --aspect: calc(var(--container-w) / var(--container-h));
  --duration-x: calc(var(--duration-y) * var(--aspect));
  
}

@keyframes bgScroll {
  0% {
    background-position : 0px 0px
  }
  100% {
    background-position : 0px -808px
  }
}

@keyframes x {
  from { left: 0; }
  to { left: calc(100% - var(--logo-w)); }
}

@keyframes y {
  from { top: 0; }
  to { top: calc(100% - var(--logo-h)); }
}

body {
  color: black;
  font-family: Lucida, Monospace;
  background-image: url("/assets/fish.gif");
}

#_body {
  background-color: #e3e3e3;
  opacity: 0.85;
  z-index: -1;
  width: 50%;
  border: 1px solid black;
  filter: drop-shadow(30px 10px 4px black);
  
  
  
}

#_gooberJail {
  position: absolute;
  left: 120px;
  z-index: -3;
  filter: drop-shadow(30px 10px 4px black);
  
}

#_container {
  position: absolute;
  width: calc(var(--container-w) * 1px);
  height: calc(var(--container-h) * 1px);
  border: 1px solid black;
  margin: auto;
  background-color: white;
}

#_header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: grey;
  position: absolute;
  width: var(--container-w);
  left: 500px;
}

#_me {
  width: var(--logo-w);
  height: var(--logo-h);
  
}

._logo {
  position: absolute;
  width: var(--logo-w);
  height: var(--logo-h);
  animation:
    x var(--duration-x) linear infinite alternate,
    y var(--duration-y) linear infinite alternate;
  color: red;
    
}

