h2.about-me {
    color: navy;
}

h2.hobbies {
    color: maroon;
}

h2.education {
    color: darkgreen;
}

.education-college {
    font-weight: bold;
}

.education-high-school {
    font-style: italic;
}

.education-certificate {
    text-decoration: underline;
}

a:hover {
    font-size: 150%;
}

table {
    text-align: center;
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th {
    background-color: #3498db;
    color: white;
    padding: 10px;
}

td {
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

ol {
    list-style-type: decimal;
}

ol ol {
    list-style-type: upper-alpha;
}

.form-group {
    margin: 15px 0;
}

input[type="radio"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    outline: 2px solid grey;
    background-color: grey;
}

input[type="radio"]:checked {
    background-color: green;
}

input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid grey;
    background-color: grey;
}

input[type="checkbox"]:checked {
    background-color: blue;
}

.language-columns {
    display: flex;
    gap: 20px;
}

.language-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}