
#education .content {
    display: flex;
    flex-flow: column wrap;
    gap: 20px;
}

#education .card {
    flex: 1 1 0px;
    display: flex;
    flex-direction: row;
    margin: 1em 0;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* max-width: 700px; */
}

#education .card img.university-logo {
    width: 100px;
    height: auto;
    margin: 5px;
}

#education .card .degree-info {
    flex: 1;
    border-left: 1px solid white;
  padding: 0em 1em;
}

#education .card h2 {
    margin-top: 0;
}

#education .card a {
    color: #eeeeee;
    text-decoration: underline;
}

#education .card a:hover {
    text-decoration: none;
}

/* Specific styles for each university */
.western {
    background-color: #4f2683; /* Western University's purple */
    color: white;
}

.brock {
    background-color: #cd0001; /* Brock University's red */
    color: white;
}

#education .card .dates {
  padding: 0em 1em;
  font-weight: bold;
  font-size: large;
  margin-top: 0px;
  
}