
:root{
    --illini-blue: #13294B;
    --illini-orange: #FF5F05;
}

body{
    margin: 20px;
    font-family: Arial, sans-serif;
    /* background-color: rgb(248, 248, 248) */
}

h1 {
    font-size: 24px;
    color: var(--illini-blue); /* Dark blue */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.author-highlighted {
    text-decoration: underline;
}



.block {
    display: flex;
    align-items: center; /* Aligns items at the top */
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px;
    margin: 30px;
    /* background-color: white; */
    /* background-color: white; */
}

.block a {
    color: #2c98f0;
    text-decoration: none;
}

.block a:hover {
    color: var(--illini-orange);
    text-decoration: underline;
}

.block .highlight {
    font-size: 18px;
    color: #E84A27; /* Orange-red */
    font-weight: bold;
    margin-bottom: 20px;
}

.about {
    max-width: 60%;
}

.about p {
    font-size: 16px;
    color: rgb(41, 39, 39); /* Dark gray */
    line-height: 1.5;
}

.list p {
    font-size: 16px;
    color: rgb(41, 39, 39); /* Dark gray */
    line-height: 0.1;
    padding-top: 5px;
}


.image-content img {
    width: 380px; /* Adjust based on the image size */
    height: auto; /* Adjust based on the image size */
}



.navbar ul{
    list-style-type: none;
    /* background-color: #C8C6C7; */
    padding: 0px;
    margin: 0px;
    margin-left: 7%;
    margin-right: 7%;
    overflow: hidden;
    justify-content: space-between; /* Adds space between the list items */
}

.navbar a{
    color: var(--illini-blue);
    text-decoration: none;
    padding: 15px;
    display: block;
    text-align: center;
    font-size: 20px;
}

.navbar a:hover{
    color: var(--illini-orange);
    text-decoration: underline;
}

.navbar li{
    margin-right: 2%;
}

/* .introduction {
    max-width: 60%; /* Restricts the width of the introduction */
/*

/*
.image-container img {
    max-width: 200px; 
    height: auto; 
    border-radius: 10px; 
}
*/

