body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
}

a {
    color: #f4a261;
}

a:hover {
    color: #e9c46a;
}

a:visited {
    color: #8ab17d;
}

.navbar {
    background-color: #264653;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999; /* Add this line */
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.social-icons {
    display: flex;
    margin-right: 30px;
    flex-direction: row;
    justify-content: flex-end;
}

.social-icons a {
    margin-left: 10px; /* Add some space between icons */
}