/* General Styles */
body {
    margin: 0;
    font-family: "VT323", monospace;
    font-weight: 2;
    font-style: normal;
    font-size: 36px;

    background-image: url("../images/SpaceBackground.png");
    background-size: cover;
    background-position: center;
    color: #94ecbe;
}

a {
   text-decoration: none;
}

/* -----Navigation Bar----- */
nav {
    margin: 10%;
    margin-bottom: 0%;
    margin-top: 2.5%;

    background-color: #94ecbe;
    display: flex;
    justify-content: center;
    padding: 20px 30px;
    border-width: 10px;
    border-style: double;
    border-color: #487a56;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #1a1f16;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #487a56;
}

/* Logo */
nav .logo {
    font-size: 1.5em;
    font-weight: bold;
}


h1 {
    text-align: center;
    margin-top: 20px;
    color: #94ecbe;
    text-shadow: 2px 2px 4px #487a56;
}

.main-content {
    padding: 20px;
    margin: 10%;
    margin-top: 5%;
    background-color: #1a1f16;
    border-style: double;
    border-color: #487a56;
}

#about {
    margin-bottom: 60px;
    overflow: hidden;
}

#about h2,
#about > p:first-of-type {
    clear: left;
}


.profile-pic {
    width: 30%;
    min-width: 120px;
    border-radius: 50%;
    border-style: double;
    border-width: 10px;
    float: left;
    margin-right: 30px;
    margin-bottom: 10px;
}

#contact {
    text-align: center;
}

.under-construction {
    text-align: center;
    font-size: 24px;
    color: #94ecbe;
    text-shadow: 1px 1px 2px #487a56;
    margin-top: 50px;
}

/* ----- Responsive Design ----- */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }
}