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

/* BODY */
body {
    font-family: Georgia, serif;
    background: #0b1220;
    color: #e5e7eb;
    line-height: 1.6;
}

/* HEADER */
header {
    background: #020617;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2rem;
}

/* MAIN */
main {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

/* SECTIONS */
section {
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 10px;
}

/* LINKS */
a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #334155;
    padding: 12px;
}

th {
    background: #1e293b;
}

/* NAV LINKS */
.nav-links a {
    display: inline-block;
    margin-right: 15px;
}

/* FORM */
form {
    background: #1e293b;
    padding: 20px;
    border-radius: 10px;
}

input, select, textarea {
    width: 100%;
    margin-top: 10px;
    padding: 8px;
}

/* BUTTON */
input[type="submit"] {
    margin-top: 15px;
    background: #60a5fa;
    border: none;
    cursor: pointer;
}

/* VIDEO + IFRAME */
video, iframe {
    display: block;
    margin: 20px auto;
    max-width: 100%;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    margin-top: 40px;
}