.about-section * {
    color: white;
    background-color: black;
}

.about-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 200px;
}

.about-heading {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-header {
    margin-bottom: 40px;
}

.about-header button {
    font-size: 28px;
    padding: 10px;
    border-style: solid;
}

.about-header button:hover {
    border-bottom: 2px solid rgb(43, 255, 204);
    cursor: pointer;
}

.education-box, .experience-box {
    display: flex;
    flex-direction: column;
    border: 0.1px solid rgb(43, 255, 204);
    box-shadow: rgba(191, 196, 39, 0.15) 2px 4px 24px;
    padding-top: 15px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin-bottom: 20px;
}

.institution-box, .organization-box {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.institution-name, .organization-name {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 3px;
}

.degree-name, .degree-date, .position-name, .job-period {
    color: rgb(198, 180, 180);
    margin-bottom: 3px;
}

.institution-logo, .company-logo {
    width: 60px;
}

.GPA {
    margin-bottom: 12px;
}


.achievements-and-awards {
    margin-top: 10px;
}
.achievements-and-awards span {
    font-weight: bold;
    color: rgb(43, 255, 204);
}
.education-box span {
    color: rgb(43, 255, 204);
    font-weight: bold;   
}

/* Below starts experience styling */

.experience-box {
    border-color:rgb(69, 52, 220);
}

.company-logo {
    width: 80px;
    border-radius: 80px;
}

.organization-box {
    margin-bottom: 0px;
}

.job-description ul {
    margin-bottom: 0px;
}

@media (max-width: 600px) {
    .institution-name, .organization-name {
        font-size: 17px;
    }
}
