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

body {
  background-color: black;
  color: #a700ff;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
}

.logo {
    position: relative;
    left: 50px;
  }
  
.doofpresentation {
    float: right;
  }
  
  .container {
            overflow-y: scroll;
            width: 500px;
  height: 300px;
    }
  
.menu {
  position: relative;
  top: 20px;
    left: 50px;
  outline: #a700ff solid 4px;
  width: 500px;
  height: 300px;
}

button {
  outline: #a700ff solid 4px;
  background-color: black;
  color: #a700ff;
  height: 80px;
  border-radius: 3px;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  }
button:hover {
  cursor: pointer;
  outline: black solid 4px;
  background-color: #a700ff;
  color: black;
      animation: shake 0.6s;
  animation-iteration-count: infinite;
  }

  
.aboutbutton {
  border-radius: 3px;
        outline: #a700ff solid 4px;
  position: relative;
  top: 20px;
    left: 20px;
    content: url("/buttons/about-me/aboutmeinverted.png")
  }
  .aboutbutton:hover { 
          outline: black solid 4px;
      content: url("/buttons/about-me/aboutme.png")
    }
.dooflandbutton {
  border-radius: 3px;
        outline: #a700ff solid 4px;
  position: relative;
  top: 20px;
    left: 50px;
    content: url("/buttons/doofland/dooflandinverted.png")
  }
  .dooflandbutton:hover { 
          outline: black solid 4px;
      content: url("/buttons/doofland/doofland.png")
    }
  .normalbutton {
  position: relative;
  top: 20px;
    left: 50px;
  }
  
  .bordertext {
      position: relative;
      left: 2px;
      width: 500;
      height: 300;
    
    }
    
    .allinone {
         width: 500;
      height: 300;
      
      }
      .exitbutton {
  border-radius: 3px;
        outline: #a700ff solid 4px;
  position: relative;
  top: 20px;
    left: 20px;
    content: url("/buttons/exit/exitinverted.png")
  }
  .exitbutton:hover { 
          outline: black solid 4px;
      content: url("/buttons/exit/exit.png")
    }