#test {
    width: 100px;
    height: 100px;
    background: red;
    position: absolute;
    left: 25px;
    top: 25px;
}

body {

    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    background-color: rgb(244, 248, 248);
    height: 100%;
    background-size: cover;
}

#footer {
    position: fixed;
    right: -50;
    bottom: 150;
    margin: 0;
    padding: 0;
    width: 10%;
}

#footer img {
    width: 50%;
}

.button {
    background-color: #4CAF50;
    /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s;
    /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 15px;
}

.button2 {
    background-color: white;
    color: black;
    border: 2px solid #008CBA;
    font-size: 15px;
}

.button2:hover {
    background-color: #008CBA;
    color: white;
}

#container {
    display: inline-block;
    position: relative;
    filter: alpha(opacity:0.5);
    KHTMLOpacity: 0.5;
    MozOpacity: 0.5;
    -khtml-opacity: .50;
    -ms-filter: "alpha(opacity=50)";
    -moz-opacity: .50;
    filter: alpha(opacity=50);
    opacity: .50;
}

#container figcaption {
    position: absolute;
    top: 5px;
    right: 100px;
    font-size: 40px;
    color: black;
    text-shadow: 0px 0px 5px black;
}