body {
    padding-left: 40px;
    
}

h1 {
    font-size: 34pt;
}

a {
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
 
}
p {
    line-height: 20pt;
    width: 900px;
}


#bigsize {
    font-size: 15pt;
    color: black;
}

#smallsize {
    font-size: 10pt;
    color: black;
}

#AA {
    margin-top: -20px;
}

.buttons{
    position: center;
    width: 900px;
    
   
}

.home {
    line-height: 45px;
     width: 50px;
     font-size: 10pt;
     margin-top: 30px;
     position:fixed;
     top:0;
     right:30px;
    background-color: #752404;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
 }


.contact{
    line-height: 60px;
     width: 66px;
     font-size: 10pt;
     margin-top: 60px;
     position:fixed;
     top:0;
     right:30px;
    background-color: #752404;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
 }
.paper{
    line-height: 20px;
     width: 105px;
    height: 100px;
     font-size: 10pt;
     margin-top: 150px;
     position:fixed;
     top:0;
     right:30px;
    background-color: #752404;
    border-radius: 50%;
    color: white;
    border-style: solid;
    border-color: pink;
    border-width: 6px;
        cursor: pointer;
 }
.paper:hover{
    
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}

.tense {
    font-family: "Times New Roman", Times, serif;
    color: white;
    font-size: 12pt;
    position:relative;
    border-radius: 4px;
    padding: 10px;
    border: none;
    cursor: pointer; 
    background-image: linear-gradient(darkred, #752404);
    box-shadow:2px 2px 4px rgba(0, 0, 0, 0.30);
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    font-family: sans-serif;
    font-size: 10pt;
}

.tense:after {
	content: '';
    position:absolute;
	top: 0px;
	left: 0px;
    bottom: 0px;
	right: 0px;
	width: calc(100%);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}

.tense:hover {
    box-shadow:5px 5px 7px rgba(0, 0, 0, 0.30)
}

#scroll {
    display: none;
    line-height: 12px;
     width: 57px;
     font-size: 10pt;
     margin-top: 150px;
     position:fixed;
     top:0;
     right:30px;
    padding: 10px;
    
    background-color: #752404;
    border-radius: 50%;
    color: white;
    border: none;
    cursor: pointer;
}

#context {
    border: 2px solid #752404;
    width: 900px;
    padding-left: 20px;
    border-radius: 8px;
    margin-left: -21px;
}


#draggable{
    position:absolute;
}


.images {
    margin-left: -50px;
    margin-top: 0px;
}

#draggablefoot:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}
#draggablepins:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}
#draggabledrill:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}
#draggablepopcorn:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}
#draggableshoe:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}
#draggablevirgin:hover{
        -webkit-filter: drop-shadow(10px 10px 10px #fdec6e);
     filter: drop-shadow(10px 10px 10px #fdec6e);
}

.footer {
    font-weight:bold;
    width: 900px;
    text-align: center;
}
.link {
    color: darkred;
    text-decoration: underline;
        text-decoration-style:dotted;
}

.link:hover {
  color: darkred;
  text-shadow:0px 0px 10px #d12f24;
}
.ribbon {
  position: absolute;
  width: 1600px;
  height: 100%;
  font-size:80pt;
  line-height: 170px;
  margin: 0;
  text-align: center;
  white-space:nowrap;
  /* Starting position */
  
  -moz-transform: translateX(100%);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  /* Apply animation to this element */
  
  -moz-animation: scroll-left 6s linear;
  -webkit-animation: scroll-left 6s linear;
  animation: scroll-left 6s linear;
}
/* 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%);
  }
}