*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
height:100vh;
font-family:Arial, sans-serif;
}

.cover{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

/* Background */
.bg-img{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
top:0;
left:0;
z-index:1;
}

/* Logo container */
.logo-container{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%, -50%);
z-index:2;
text-align:center;
}

/* Logo */
.logo{
width:400px;
max-width:60vw;
height:auto;
}

/* Responsive mobile */
@media (max-width:768px){

.logo{
width:300px;
}

}