body{
    background-image: url("../images/modern-dark-living-room-1704970573K8R.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    margin:0;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
}

/* HEADER */

.header{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    
    display:flex;
    justify-content:space-between;
    align-items:center;
    
    padding:20px 40px;
    box-sizing:border-box;
    }
    
/* LOGO */

.logo{
display:flex;
align-items:center;
color:white;
font-size:22px;
font-weight:bold;
}

.logo img{
height:100px;
margin-right:10px;
}

/* Navigation */
nav{
    position:absolute;
    right:40px;
    top:30px;
    }

nav a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:18px;
}
    
nav a:hover{
    text-decoration:underline;
}

/*content */
.container{
    position:absolute;
    top:80px;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}

h1{
    font-size:80px;
    font-weight:bold;
    color:white;
}

h2{
    font-size:40px;
    color:white;
    margin-top:10px;
}