/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    padding: 20px;
}

/* Header styling */
header {
    background: linear-gradient(to right, rgba(72, 190, 129, 1), rgba(62, 171, 132, 1), rgba(52, 153, 136, 1), rgba(46, 127, 147, 1), rgba(43, 114, 153, 1), rgba(41, 108, 156, 1), rgba(56, 88, 185, 1), rgba(64, 78, 199, 1));
    color: white;
    padding: 10px 0;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
    color: rgb(97, 228, 228);
    transition: color 0.4s ease;
}

main {
    margin: 20px 0;
}

/* Profile Information Styling */
.profile-info {
    list-style-type: none;
    /* Remove bullet points */
    padding: 15px;
    background-color: #e4e4e4;
    /* Background matching the intro */
    border-radius: 5px;
    border: 1px solid #ddd;
    /* Adding border to match article */
}

.profile-info .label {
    font-size: 1.2em;
    /* Slightly smaller than before */
    font-weight: bold;
    color: #555;
    /* Change color for better readability */
}

.profile-info .value {
    font-size: 1.2em;
    /* Slightly smaller than before */
    color: #333;
    /* Keeping it dark for readability */
}

h1 {
    font-size: 2.0em;
}

/* Main content styling */
article {
    display: block;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    padding: 20px;
    border: 1px solid #ddd;
    flex: 1;
}

/* Footer styling */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}