*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:system-ui,-apple-system,Arial,sans-serif;
color:#ffffff;
line-height:1.6;

background-image:url('/bg.jpg');
background-size:cover;
background-position:center;
background-attachment:fixed;
}

.overlay{
background:rgba(0,0,0,0.55);
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;
padding:40px 20px;
}

.container{
max-width:850px;
text-align:center;
}

h1{
font-size:40px;
margin-bottom:25px;
font-weight:500;
}

h2{
margin-top:30px;
margin-bottom:10px;
font-size:24px;
}

p{
margin-bottom:15px;
font-size:18px;
}

a{
color:#ffffff;
text-decoration:none;
}

.button{
display:inline-block;
margin-top:25px;
padding:14px 30px;
border:2px solid #ffffff;
border-radius:4px;
transition:0.3s;
}

.button:hover{
background:#ffffff;
color:#000000;
}

nav{
margin-top:35px;
font-size:16px;
}

nav a{
margin:0 10px;
opacity:0.9;
}

nav a:hover{
opacity:1;
}

footer{
margin-top:40px;
font-size:14px;
opacity:0.8;
}