
body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Futura', sans-serif;
    /* font-style: italic; */
    text-align: center;
}

/* Logo */
.logo {
    display: block;       /* Forces logo to be on its own line */
    margin: 10px auto 0;  /* 10px from top, centered horizontally */
    width: 25%;
    height: auto;
}

.section-header {
    background-color: white;
    color: black;
    font-size: 18px;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 15px;
    border: 1px solid black; /* Thin black outline */
    width: 20%;
    min-width: 120px;
    margin: 20px auto 10px; /* 20px above, 10px below */
    transition: border-width 0.2s ease; /* Smooth transition */
}

.section-header:hover {
    border-width: 2px; /* Slightly thicker on hover */
}

/* Video styling */
video {
    width: 40%;
    min-width: 250px;
    height: auto;
}

/* Links in Section 1 */
.section1-links a {
    display: block;
    margin: 10px 0;
    color: black;
    text-decoration: underline;
    font-size: 16px;
}

/* Section content */
.content {
    width: 40%;           /* Match video width */
    min-width: 250px;     /* Same minimum as video */
    margin: auto;
    padding: 10px 0;
    font-size: 16px;
    text-align: left;
}

/* Bullet points */
ul {
    list-style-type: disc;
    padding-left: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        width: 50%;
    }
    video {
        width: 80%;
    }
    .section-header {
        width: 40%;
    }
}

