.background{
    background-color: #fff;
    /* The image used */
    background-image: url("/images/background2.JPG");

    /* Add the blur effect */
    filter: blur(3px);
    -webkit-filter: blur(3px);

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body, html {
  height: 100%;
  margin: 0;
  overflow: hidden;
  /* cursor: url('resources/cursor.png'), auto;	 */
}

* {
  box-sizing: border-box;
}

.textBox{
    background-color: rgba(0,0,0, 0.6); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

footer{
    background-color: rgba(0,0,0, 0.6); /* Black w/opacity/see-through */
    position: absolute;
    top: 95%;
    left: 2%;
    color: white;
    border: 1px solid #f1f1f1;
}

footer p{
    margin: 5px;
}

footer a{
    color: white;
}

@media only screen and (max-width: 600px) {
    h2{
        margin: 10px;
    }

    h1 {
        font-size: 20px;
        margin-bottom: 0;
    }

    h3 {
        margin: 0;
        font-size: 15px;
        font-style: italic;
        color: #d7d7d7;
    }
    
    .textBox{
        padding: 0;
    }

    footer {
        top: 90%;
        left: 0%;
    }
  }
