header {
    display: flex;
    position:fixed;
    width: 100%;
    top: 0;
    margin-inline: auto;
    justify-content: flex-start;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(
      rgba(171, 178, 181, 1) 0%,
      rgb(255, 255, 255) 50%
    );
    z-index: 100;
    padding-right: 1rem;
}
.Logo {
    display: block;
    z-index: 10;
    width: 5rem;
    height: auto;
}
.Site-Title a {
    font-family: "Darker Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight:800;
    font-size: 2rem;
    font-style: normal;
    text-decoration: none;
    color: #130d46;
    position:static;
    border-width: 0px 2px 0px 0px;
    border-style: ridge;
    padding-right: 0.45em;
}
#H-Extra-M {
    margin-right: auto;
}
#Sources-Header {
    background-color: #e9762b;
    border-radius: 1.3rem;
    width: auto;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    margin-right: 0.8rem;
    transition: transform 30ms ease-in-out;
    box-shadow: #000000;
}
#Sources-Header a{
    color: #130d46;
    font-family: "Darker Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-size: 1.4rem;
    font-style: normal;
    text-decoration: none;
}
#Sources-Header:hover {
    transform: scale(106%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2), 0 1.5px 6px rgba(0,0,0,0.2);
}
.Dropdown-Container1 {
    margin-right: 0.6rem;
}
.Dropdown-Menu {
    opacity: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    position:absolute;
    top: 4rem;
    z-index: 10;
    max-width: 18rem;
    width: auto;
    height: auto;
    border-radius: 4px;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 90ms ease-in-out, transform 90ms ease-in-out;
}
.Dropdown-Container1.active .Dropdown-Menu {
    opacity: 1; 
    pointer-events: auto;
    transform: translateY(0px);
}
.Dropdown-Links a {
    margin: 0.5px 0;
    line-height: 1.5;
    height: 0px;
    font-family: "Darker Grotesque", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: 1.3rem;
    font-style: normal;
    text-decoration: none;
    vertical-align: top;
    color: #000000;
}
.Dropdown-Links a:hover {
    text-decoration: underline;
}
.Drop-Down-Arrow {
    position: relative;
    left: 1px;
    width: 10px;
    height: 10px;
    transition: transform 100ms ease-in-out;
}
.Drop-Down-Arrow:hover {
    transform:scale(135%);
}
.Dropdown-Container1.active .Drop-Down-Arrow {
    transform: rotate(180deg);
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}