body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

* {
    box-sizing: border-box;
}

.bg-image {
    background-image: url("background.jpg");

    margin: 0;
    padding: 0;

    height: 100vh;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-text {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.7); /* Black w/opacity/see-through */
    font-family: 'Roboto', sans-serif;
    font-size: 2vmin;
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid #f1f1f1;
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: left;
}

a {
    color: white;
    text-decoration: underline;
}

a:hover {
    color: #cccccc;
}
