/* Existing styles */

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.buttons {
    margin-bottom: 20px;
}

/* Flexbox styles for buttons to center icon and text */
.buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
    text-decoration: none;
    color: black;
    font-size: 1em;
    font-weight: bold;
}

.buttons .img {
    width: 50px;
    height: 50px;
    margin-right: 10px; /* Space between icon and text */
}

/* Style for the GitHub button text */
#github-text {
    font-size: 1em;
    margin-left: 10px;
}

/* Language switch button styles */
.language-switch button {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
    cursor: pointer;
    background-color: #0073b1;
    color: white;
    border: none;
    border-radius: 5px;
}

.language-switch button img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.language-switch button:hover {
    background-color: #005582;
}

/* Remove bullet points from the project list */
.project-list {
    list-style-type: none;
    padding-left: 0;
}

.project-list li {
    margin-bottom: 10px;
}
.project-list a {
    vertical-align: baseline;
    text-decoration: none;
    color: #074566;
    font-weight: bold;
}
.project-list img {
    vertical-align: middle;
}

/* Style for the "Back to Home" button */
.back-to-home {
    margin-top: 30px;
}

.back-to-home a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073b1;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.back-to-home a:hover {
    background-color: #005582;
}
