/* PAGE STYLING */

body {

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    background: linear-gradient(to right, #dbeafe, #f0f9ff);

    color: #222;

}

/* HEADER */

header {

    background-color: #15d4ff;

    color: rgb(31, 45, 30);

    text-align: center;

    padding: 20px;

}

/* NAVIGATION */

nav ul {

    list-style-type: none;

    padding: 0;

}

nav li {

    display: inline;

    margin: 0 15px;

}

nav a {

    text-decoration: none;

    color: white;

    font-weight: bold;

    transition: 0.3s;

}

/* NAV HOVER */

nav a:hover {

    color: #38bdf8;

}

/* MAIN */

main {

    width: 85%;

    margin: auto;

    padding: 30px;

}

/* BIO SECTION */

.bio-section {

    display: flex;

    justify-content: space-between;

    align-items: center;

    background-color: white;

    padding: 30px;

    border-radius: 10px;

    box-shadow: 0px 4px 10px rgb(255, 166, 0);

}

.bio-text {

    width: 65%;

}

.profile-image img {

    width: 220px;

    border-radius: 50%;

    border: 5px solid #2b3e5cee;

}

/* TABLE */

.table-section {

    background-color: white;

    padding: 25px;

    border-radius: 10px;

    box-shadow: 0px 4px 10px rgb(8, 255, 62);

}

table {

    width: 100%;

    border-collapse: collapse;

    margin-top: 20px;

}

th {

    background-color: #1e293b;

    color: white;

}

th,
td {

    border: 1px solid #999;

    padding: 12px;

    text-align: center;

}

tr:nth-child(even) {

    background-color: #f1f5f9;

}

/* FOOTER */

footer {

    background-color: #1e293b;

    color: white;

    text-align: center;

    padding: 15px;

    margin-top: 30px;

}

/* HEADINGS */

h1 {

    font-size: 42px;

}

h2 {

    color: #0f2226;

}

h3 {

    color: #0e1e23;

}