/* Global CSS */
html {
    position: relative;
    min-height: 100%;
    background-image: url('images/background/background-image.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
}

body {
    /* Margin bottom by footer height */
    background-color: rgba(191, 191, 191, 0.8);
    height: 100%;
}


/* Header */
.page-header{
    height: auto;
    background-color: #006666;
    padding-top: 10px;
    color: #E0E0E0;
}


/* Middle */
.middle {
    position:static;
    bottom: 0;
}

.button {
  display: block;
  width: 100%;
  border: none;
  background-color: #4CAF50;
  padding: 20px;
  cursor: pointer;
  text-align: center;
                color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    font-family: 'ABeeZee';
    margin-top: 100px;
}

@media screen and (max-width: 480px) {
    .button {
    display: block;
  width: 100%;
  border: none;
  background-color: #4CAF50;
  padding: 14px 28px;
  cursor: pointer;
  text-align: center;
        margin-top: 20px;
    }
}
/* Button CSS 
.button {
    display: inline-block;
    padding: 50px 50px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    outline: none;
    color: #fff;
    background-color: #4CAF50;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
    height: 100%;
}*/

.button:hover {
    background-color: #3e8e41
}

.button:active {
    background-color: #3e8e41;
    box-shadow: 0 5px #666;
    transform: translateY(4px);
}


/* Text tags */
p {
    font-family: "Courier New", Courier, monospace;
}

h1, h2, h3{
    font-family: 'Fredoka One';
}


/* Quote CSS */
.quoteImage{
    width: auto;
    height: 300px;
}

.quoteText{
    color: #006666;
}

/* Rotate image */
#spinningImg{ 
    transform-origin:50% 50%;
    animation:2s rotateRight infinite linear; 
}

@keyframes rotateRight{
    100%{ transform:rotate(360deg); }
}


/* Footer
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
    display: block;
    text-align: center;
}

.footer-text{
    color: black;
}
*/