{
font-family: Arial, sans-serif;
color: #ffffff;
margin: 0;
padding: 20px;
box-sizing: border-box;
text-align: center;
/* --- BACKGROUND IMAGE --- */
background-image: url('images/background.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
position: relative;
}
/* --- DARK OVERLAY --- */
before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.6);
z-index: -1;
}
/* --- Main content container --- */
.container {
background-color: rgba(255, 255, 255, 0.1);
padding: 40px;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
max-width: 650px;
border: 1px solid rgba(255, 255, 255, 0.2);
}
h1 {
font-size: 3em;
color: #ffffff;
margin: 0;
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.tagline {
font-size: 1.2em;
color: #a7c8e8;
margin-top: 5px;
margin-bottom: 25px;
}
.mission {
font-size: 1.1em;
line-height: 1.6;
color: #dddddd;
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 25px;
}
.launch-info {
margin-top: 30px;
}
.launch-info h2 {
font-size: 1em;
color: #bbbbbb;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 5px;
}
.launch-info .launch-date {
font-size: 2em;
font-weight: bold;
color: #ffffff;
margin: 0;
text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}