/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, black, #999);
    color: white;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 15px 0;
    border-bottom: 1px solid white;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.navbar a:hover {
    text-decoration: underline;
}

/* ABOUT SECTION */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 50px;
}

.about-text {
    max-width: 500px;
}

.about-text h1 {
    margin-bottom: 15px;
}

.about-image img {
    width: 250px;
    border-radius: 10px;
}

/* TABLE */
.table-section {
    display: flex;
    justify-content: center;
    padding: 40px;
}

table {
    border-collapse: collapse;
    width: 60%;
    background-color: rgba(0,0,0,0.5);
}

th, td {
    border: 1px solid white;
    padding: 10px;
    text-align: center;
}

th {
    font-weight: bold;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-image img {
        width: 180px;
    }

    table {
        width: 95%;
        font-size: 14px;
    }

    .navbar {
        flex-wrap: wrap;
    }
}