.card {
    flex: 1 1 300px; 
    display: flex;
    flex-direction: column;
    width: 80vw;
    background-color: transparent;
    border: none;
}

.card-body {
    flex: 1;
    color: black;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: left;
    height: 10%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-text {
    font-size: 1em;
    margin-top: 10px;
    opacity: 0.7;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.skill_div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
}


.card-title {
    font-size: 2em;
    margin-bottom: 10px;
    opacity: 0.7;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.skill-icon {
    height: 4em;
    width: 4em;
    transition: transform .2s;
    
}
.skill-icon:hover {
    color: #89cebe;
    transform: scale(1.2);
}