@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background-color: #fff;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 16px;
}

a:link {text-decoration:none; color:#0000FF;}
a:visited {text-decoration:none; color:#0000FF;}
a:hover {text-decoration:underline; color: #FF0000;}

h1 {
    font-family: 'Anton', serif;
    font-size: 34px;
    text-align: center;
    color: #ffcc66;
    text-shadow: 4px 4px 4px #222;
    margin-top: 20px;
    margin-bottom: 20px;
}

.elv-img {
    height: 300px;
}

.center-image
{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 30px;
}



/* Small devices (landscape phones, 576px and up) */
@media(min-width: 576px) {
    h1 {
        font-size: 48px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media(min-width: 768px) {

    .elv-img {
        height: 100%;
    }

    .footer {
        position: fixed;
    }
}

/* Large devices (desktops, 992px and up) */
@media(min-width: 992px) { 

}

/* Extra large devices (large desktops, 1200px and up */
@media(min-width: 1200px) {
    
}