.Head-Title {
    font-weight: 600;
    font-size: 2em;
    margin: 0;
    margin-left: 30px;
    margin-right: 30px;
    line-height: 50px;
}

.Head-Title-Link:hover {
    transform: scale(1.1);
}

.Head-Title-Small {
    font-weight: 200;
    font-size: 0.7em;
}

.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: #999 transparent transparent transparent;
}

.nav-text {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}


.right-header {
    margin-left: auto;
    margin-right: 20px;
    display: flex;
    gap: 30px;
}

.header-icon {
    height: 45px;
    width: 45px;
    transition: all 0.1s ease-out;

}

.header-icon:hover {
    transform: scale(1.1);
}

.nav-link {
    margin: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-link:hover {
    background-color: #dbdbdb;
}

.dropdown {
    display: inline-block;
    height: 100px;
    overflow: hidden;
    width: 200px;

}

.dropdown:hover {
    overflow: visible;
}

.dropdown:hover .dropdown-content {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dropdown-content {
    width: max-content;
    height: max-content;
    background-color: white;
}

.dropdown-content>a {
    height: 80px;
    width: 200px;
    text-align: center;
    justify-content: center;

}

.dropdown-content>a:hover {
    background-color: #dbdbdb;
}

.dropdown-content>p {
    margin: 0;
    height: 80px;
    width: 200px;
    text-align: center;
    line-height: 80px;
}

#darkmode {
    cursor: pointer;
}

.github-svg {
    fill: black;
}

.menu-icon {
    cursor: pointer;
}

.right-menu-bar {
    display: flex;
    margin: auto;
    margin-right: 15px;
    display: none;
    flex-direction: row;
}
