body{
    color: white;
    font-family: consolas;
    margin: 0;
    text-align: center;
}
h1{
    font-size: 50px;
}
p{
    text-align: center;
    font-size: medium;
    color: rgb(154, 154, 154);
    padding-bottom: 400px;
}
ul{
    color: white;
}
a{
    color: rgb(58, 81, 197);
}
li{
    color: rgb(154, 154, 154);
    padding-bottom: 400px;
}
colored{
    color: rgb(58, 81, 197);
}
.logo{
    max-width: 75px;
}
.top-bar {
    background-color: transparent;
    color: white;
    padding: 10px;
    text-align: center;
    display: flex;
    position: fixed;
    top: 0;
    height: 75px;
    width: 100%;
    z-index: 1;
    font-family: consolas;
}

/* Basic styling for the dropdown container */
.dropdown-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align to the top right */
    padding: 10px;
    position: relative;
    z-index: 2; /* Ensure the dropdown is above the top bar */
    margin-top: 2px; /* Adjust this value based on the height of your top bar */
    margin-left: 0px;
    margin-right: 5px;
}

/* Style the selected category indicator */
.selected-category {
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
}

/* Basic styling for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the button that will trigger the dropdown */
.dropdown button {
    background: url('/images/dropdown.png') center/cover;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 3;
    right: 0;
    border-radius: 5px;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 5px;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show the dropdown when hovering over the button */
.dropdown:hover .dropdown-content {
    display: block;
}
#github{
    height: 1;
}
