h1 {
    align-self: center;
    padding-bottom: 2vh;
}

.menu {
    padding-left: 1vw;
    padding-right: 1vw;
    display: flex;
    width: 100%;
}

.menu > a {
    width: 50%;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
    background-color: rgb(0, 0, 0, 0);
    display: flex;
    flex-direction: row;
    flex: 1;
    font-size: large;
}

.menu > a:hover {
    border: 1px solid white;
}

.menu > a i {
    padding-left: 2vw;
    display: flex;

}

.menu > a span {
    align-self: center;
    justify-content: center;
    padding-left: 2vw;
}

.presentation {
    padding: 0 2vw;
    /* padding-right: 2vw; */
    font-size: medium;
}

footer {
    position: relative;
    margin-top: auto;
    display: flex;
    bottom: 0;
    width: 100%;
    background-color: var(--primary-color);
    
    text-align: center;
    padding: 1vh 0  0 0;
    gap: 20px; /* Space between items */
    
    justify-content: center;
    align-items: center;
    flex-direction: row;
}


/* Profile link styling */
.github-profile {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

.github-profile:hover {
    color: #0366d6; /* GitHub blue */
}

/* Profile picture styling */
.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid #333;
    transition: border-color 0.3s ease;
}

.github-profile:hover .profile-picture {
    border-color: #0366d6;
}

/* Profile name styling */
.profile-name {
    font-size: 16px;
    font-weight: bold;
}
