html, body {
    margin: 0;
    height: 100%;
}

body{
    margin: 0;
    font-family:'Lucida Console';
    color: black;
    background-color: black;
    background-image: url('../img/pasa4.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
}
/* 2) COLOR SCHEME (4 COLORS) */
:root {
    --color-primary:black;
    --color-accent1: #f6c7e8;
    --color-accent2: #aaa8a9;
    --color-text: #eee3d4;
}
/* 3) NAVIGATION */
.main-nav ul {
    list-style: none;
    background: var(--color-primary);
    padding: 10px;
    margin: 0;
    display: flex;
}
.main-nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.main-nav a:hover {
    background: rgba(246, 199, 232, 0.5);
    color: white;
}

/* 4) BANNER */
.banner {
    height: 300px;
    background: url("../images/banner.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

/* 5) MAIN PAGE CONTENT */
.intro {
    padding: 5px;
    color: var(--color-text);
    text-align: center;
    flex: 1;
}

/* 6) FOOTER */
footer {
    text-align: center;
    padding: 12px;
    background: var(--color-primary);
    color: white;
    margin-top: auto;
}
/* ABOUT PAGE STYLES */
.about-banner {
    background-image: url('../img/pasa.osemdi.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 40px;
}

.about-banner h1 {
    color: white;
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    margin: 0;
}

.about-content {
    padding: 40px;
    color: black;
    max-width: 400px;
}

.about-content h2 {
    margin-top: 0;
}

.about-content p {
    margin: 12px 0;
}