body {
    font-family: 'Times New Roman', Times, serif;
    margin: 25px;
    font-size: 20px;
    background-color: darkblue;
    color: lightgray;
}

li {
    display: inline;
    font-size: 24px;
}

li a,
.contact a,
.resume a {
    color: black;
    padding-left: 40px;
}

.bio p {
    font-size: 20px;
    line-height: 1.50;
    padding: 20px;
}

.about-content {
    display: flex;
    align-items: center;
}

img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    object-fit: cover;
}

td {
    padding: 5px;
    text-align: center;
}

table {
    margin: 5px;
    border-color: gray;
    border-style: solid;
    text-align: center;
    height: 50%;
    width: 70%;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    /* Allows the skills to wrap to the next line */
    justify-content: center;
}

.skill {
    flex-basis: 20px;
    margin: 5px;
    /* Adjust margin between skills */
    padding: 10px;
    border: 1px solid #ccc;
}

.projects,
.activities,
.achievements {
    padding-left: 70px;
    line-height: 1.5;
}

h2 {
    padding-left: 25px;
    color: goldenrod;
}

.contact p,
.contact a,
.resume {
    padding-left: 70px;
}

footer {
    text-align: center;
}