body, html {
    height: 100%;
}

* {
    box-sizing: border-box;
}

.bg-image {
    /* The image used */
    background-image: url('../imgs/golden-retriever.jpg');

    /* Add the blur effect */
    filter: blur(6px);
    -webkit-filter: blur(6px);

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Position text in the middle of the page/image */
.bg-text {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
}

.bg-footer {
    /* background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.5); */
    color: white;
    font-weight: bold;
    border: 0px solid #f1f1f1;
    position: absolute;
    bottom: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    z-index: 2;
    width: 100%;
    padding: 5px;
    text-align: center;
}

a {
    text-decoration: none;
    font-size: small;
    font-style: normal;
    /* cursor: default; */
}
