*{margin:0;padding:0;box-sizing:border-box;font-family:Arial, Helvetica, sans-serif}
body{
  background:url('background.jpg') center/cover no-repeat fixed;
  color:white;
  min-height:100vh;
}
header nav{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px;
  background:rgba(0,0,0,0.25);
}
nav a{
  color:white;
  text-decoration:none;
  font-size:14px;
  margin-left:20px;
  letter-spacing:1px;
}
.logo{font-weight:bold;font-size:14px;}
.centered{
  display:flex;
  justify-content:center;
  align-items:center;
  height:80vh;
}
.centered h1{
  font-size:60px;
  letter-spacing:8px;
}
.page{
  padding:80px 40px;
  max-width:800px;
  margin:auto;
  background:rgba(0,0,0,0.45);
}
h2{margin-bottom:20px;font-size:26px;letter-spacing:4px;}
p{margin-bottom:16px;line-height:1.6;}
ul{list-style:none;padding-left:0;}
ul li{margin-bottom:10px;}
a{color:white;text-decoration:underline;}
