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

#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:url('./background.jpg');
    background-size:cover;
    background-position: center center;
    z-index: -1;
}

#wrapper {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

#content {
   width: 800px;
   max-width:80%;
}

#logo {
    width: 100%;
    height: auto;
}