html, body {
    margin: 0;
    
 }

.content {
    display: grid;
    place-items: center;
    
    background: #16161d;
    width: 100vw;
    height: 100vh;
    

}

.logo {
    padding: 10px;
    width: 200px;
    border-radius: 5px;
    text-align: center;
    z-index: 1;
}

.background {

    background-image: url(/images/background.jpg);
  
    background-repeat: no-repeat;
    background-size: 100% 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }