#education-card {
    display: flex;
    flex-direction: column;
    border: #EDF060 2px solid;
    max-width: 500px;
    min-width: 350px;
    padding: 3rem 2rem;
    justify-self: center;
    background-color: #100b00;
    border-radius: .5rem;
    margin: 1rem;
}

#education-card ul {
    list-style: none;
    padding: 1rem 0;
    
}

#education-card h2 {
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1rem;
    padding-top: 1rem;
    
}

#education-card .details {
    display: flex;
    flex-direction: row;
    justify-content: left;
    gap: .5rem;
}

#education-card .details span {
    color: #9c9c9c;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
}

#education-card ul li {
    padding-bottom: .5rem;
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    color: white;
}

#education-card ul li::before  {
    content: "➜";
    color: #EDF060;
    padding-right: .5rem;
}

#education-card a {
    color: #9c9c9c;
    font-weight: 500;
    font-family: "Google Sans", sans-serif;
    font-size: 1rem;
    transition: 0.1s ease-in;
}

#education-card a:hover {
    color: #EDF060;
}