/* General page setup */
body {
background: #0095ff;
background: linear-gradient(180deg, rgba(0, 149, 255, 1) 0%, rgba(163, 255, 250, 1) 100%);
    font-family: Frutiger, MS Gothic, sans-serif;
    margin: 0;
    padding: 0;
}

#container {
    width: 1000px;
    margin: 20px auto;
    background-color: #ffffff;
    border: 3px outset #00ffe5;
}

/* Header */
#header {
    background-color: #00babd;
    color: white;
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid #00ffe5;
}

#header h1 {
    margin: 0;
    font-size: 28px;
}

/* Navigation */
#nav {
    background-color: #00fbff;
    padding: 8px;
    border-bottom: 2px solid #00ffe5;
}

#nav a {
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

#nav a:hover {
    text-decoration: underline;
}

/* Content */
#content {
    padding: 15px;
}

/* Project blocks */
.project {
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px dashed #00ffe5;
}

.project h2 {
    margin-top: 0;
    color: #003366;
}

/* Video embed styling */
.video {
    margin-top: 10px;
    text-align: center;
}

.video iframe {
    border: 2px solid #00ffe5;
}

/* Footer */
#footer {
    background-color: #00babd;
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    border-top: 3px solid #00ffe5;
}