@font-face {
  font-family: WickedMouse;
  font-weight: bold;
  src: url("Wicked\ Mouse\ Demo.otf") format("opentype");
}

body{
  background-color: black;
  height:100%;
}
.header { 
  grid-area: header; 
  overflow: hidden;
  text-align: center;
  font-size: 30px;
  font-family: fantasy;
}

.menuItem { 
  grid-area: menu; 
  background-color: silver !important;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 100px;
  text-align: center;
  width:120px;
  max-width: 120px;
  min-height: 200px;
  max-height: 238px;
}
.right { 
  grid-area: right; 
  
  width:100%;
}

.grid-container {
  display: grid;
  grid-template-areas:
    'header header header header header header header header header header header'
    'menu  right right right right right right right right right right';
  grid-template-columns: 120px;
  grid-gap: 10px;
  padding: 10px;
  width: 80%;
  margin:auto;
}

.grid-container > div {
  background-color: blanchedalmond;
  padding: 20px 0;
}

#menu{
  width: 100%;
}

td {
  border-top: solid 2px black;
}

td:hover {
  cursor: pointer;
  background-color: rgb(209, 209, 209)
}

body{
  background-image: url("background.png");
  overflow-x: hidden;
}

#annoyingThingHeader{
  color: purple;
  text-align: center;
  padding: 5px;
  background-color: gray;
}
#annoyingThing {
  position: absolute;
  height: 150px;
  width: 150px;
  right: -17%;
  background-image: linear-gradient(to right, rgba(0,0,0,0), rgba(250,11,100,1));
}
#annoyingThing button{
  width:100%;
  background-color: cornflowerblue;
  color: rebeccapurple;
}
#divImg{
  height: 100px;
  width: 100%;
  background-image: url(stianfrog.png);
  background-size: 200px;
  background-position-x: -20px;
  background-position-y: -80px;
}


.cog {
	-webkit-animation: cog 5s infinite;			
	-moz-animation: cog 5s infinite;
	-ms-animation: cog 5s infinite; 			
	animation: cog 5s infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;		
	-ms-animation-timing-function: linear;
	animation-timing-function: linear	
}

@keyframes cog {
  100%{ 
    -moz-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg)
    }
  }

  
.cog1 {
	-webkit-animation: cog1 5s infinite;			
	-moz-animation: cog1 5s infinite;
	-ms-animation: cog1 5s infinite; 			
	animation: cog1 5s infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-timing-function: linear;		
	-ms-animation-timing-function: linear;
	animation-timing-function: linear	
}

@keyframes cog1 {
  100%{ 
    -moz-transform: rotateZ(360deg);
    -ms-transform: rotateZ(360deg);
    transform: rotateZ(360deg)
    }
  }




  .scroll-left {
    height: 50px; 
    overflow: hidden;
    position: relative;
    }

    .scroll-left p {
      position: absolute;
      width: 100%;
      height: 100%;
      margin: 0;
      line-height: 50px;
      text-align: center;
      /* Starting position */
      -moz-transform:translateX(100%);
      -webkit-transform:translateX(100%); 
      transform:translateX(100%);
      /* Apply animation to this element */ 
      -moz-animation: scroll-left 10s linear infinite;
      -webkit-animation: scroll-left 10s linear infinite;
      animation: scroll-left 10s linear infinite;
    }
    /* Move it (define the animation) */
    @-moz-keyframes scroll-left {
    0% { -moz-transform: translateX(100%); }
    100% { -moz-transform: translateX(-100%); }
    }
    @-webkit-keyframes scroll-left {
    0% { -webkit-transform: translateX(100%); }
    100% { -webkit-transform: translateX(-100%); }
    }
    @keyframes scroll-left {
    0% { 
    -moz-transform: translateX(100%); /* Browser bug fix */
    -webkit-transform: translateX(100%); /* Browser bug fix */
    transform: translateX(100%); 
    }
    100% { 
    -moz-transform: translateX(-100%); /* Browser bug fix */
    -webkit-transform: translateX(-100%); /* Browser bug fix */
    transform: translateX(-100%); 
    }
    }




    .reference{
      width: 60%;
      margin-top: 10px;
      padding: 10px;
      border-color: gray;
      background-color: ivory;
      border-style: dashed;
    }

    .leftFloat{
      float: left;
      margin-left:10%;
    }
    .rightFloat{
      float: right;
      margin-right:10%;
    }
    .reference p {
      padding-top:10px;
    }

    .portrait {
      border-radius: 360px;
      width: 100px;
      float: right;
      margin-left: 10px;
    }

    @media (min-width: 1300px) {
      .managing{
        background-image:url('metalman.png');     
        background-repeat: no-repeat; 
        background-position-x: 99%;
        }
    }
    