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

.bg {
    /* The image used */
    background-image: url("images/back01.jpg");

    /* Full height */
    height: 100%;

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

.overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.content {
    position: relative;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    

    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.logo {
    width: 200px;
}

.text{
    margin-top:2rem;
    font-size: 1.5rem;
}
footer {
    position: absolute;
    bottom:0px;
}