#title {
    text-align: center;
    padding: 50px 0px 0px 0px;
    font-weight: bold;
    font-size: 40px;
    color: rgb(71, 67, 67);
}

.edu {
    display: flex;
    justify-content: space-between;   
}

main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.desc-and-skills {
    padding: 5%;
}

.skills {
    list-style: none;
    padding: 0px 50px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.skills li {
    font-size: 12px;
    background-color: rgb(244, 241, 241);
    border: 2px solid lightgrey;
    padding: 7px 14px;
    border-radius: 20px;
    margin: 0px 10px 10px 0px;
}

.skills li:hover {
    background-color: lightgrey;
}

.image img {
    width: 75%;
}

#cert img {
    aspect-ratio: 792/612;
    width: 50%;
}

h2:nth-of-type(odd) {
    text-align: left;
}

h2:nth-of-type(even) {
    text-align: right;
}

.edu-title {
    font-size: 1.75em;
    padding: 2% 2.5%;
}

.edu .content p {
    padding: 2.5% 50px;
}

