/* 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." */

html {
  cursor: url('img/catcursor.webp'), default;

  min-height: 100%;
}

body {
  background-image: url('img/passinho2009.gif');
  background-repeat: repeat;
  color: black;
  font-family: 'Comic Sans MS';
  min-height: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 50px;
  animation: 
        verticalFlow 3s linear infinite, 
        horizontalSway 2s ease-in-out infinite alternate;
}

@keyframes verticalFlow {
    from {
        background-position-y: 0;
    }
    to {
        background-position-y: 373px; 
    }
}
@keyframes horizontalSway {
    from {
        background-position-x: -100px; 
    }
    to {
        background-position-x: 100px; 
    }
}

.main-container {
  width: 80%;
  margin: 40px auto 0 auto;
}

.header-banner, .sidebar, .main-body, .footer {
  border: 3px solid black;
  outline: 3px solid black;
  outline-offset: 3px;
  border-radius: 2px;
}

.header-banner {
  background-color: rgba(152, 152, 125, 0.9);
  padding: 20px;
  text-align: center;
  width: 70%;
  margin: 0 auto 50px auto;
}

.content-wrapper {
  display: flex;
}

.sidebar {
  width: 15em;
  background-color: rgba(200, 255, 255, 0.9);
  padding: 20px;
  margin: 0 30px 0 0;
  flex-shrink: 0;
}

.main-body {
  padding: 20px;
  background-color: rgba(255, 220, 230, 0.9);
  flex-grow: 1;
}

.footer {
  padding: 10px;
  background-color: rgba(255, 220, 230, 0.9);
  margin: 20px auto;
  text-align: center;
  width: 25%;
}
/* Stupid stuff */

a {
  cursor: url('img/catcursor_pointer.webp'), pointer;
}

.invisi-link {
  text-decoration: none;
  color: inherit;
}
