/* styles.css */

body {
    font-family: 'Bebas Neue', sans-serif; /* Applying Bebas Neue throughout the body */
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f0f3f5;
    color: #333;
}

header {
    background: url('background.jpg') no-repeat center center/cover;
    color: #535353;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 960px;
    margin: 0 auto;
}

.profile-pic {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    margin-right: 20px;
    box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.6); /* Shadow around the image for depth */
    border-radius: 10px; /* Slightly round the corners */
}

.header-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-text h1, .header-text p {
    margin: 0;
    text-align: left;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    background-color: #000000;
    margin-top: auto;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    padding: 15px 20px;
    display: inline-block;
    color: #fbffc8;
}

nav ul li a:hover {
    background-color: #6d7900;
}

main .section {
    display: none;
    padding: 20px;
    text-align: center;
}

main .section:target {
    display: block;
}

footer {
    background-color: #ffffff;
    color: #666666;
    text-align: center;
    padding: 10px;
    border-top: 1px solid #cccccc;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }

    .profile-pic {
        margin: 0 auto 20px;
        width: 150px;
        height: 150px;
    }

    .header-text {
        text-align: center;
    }
}
