@import url('https://fonts.googleapis.com/css2?family=SUSE:wght@600&family=Staatliches&display=swap');

body, html {
    background-color: #F5F6F7;  
    margin: 0;
    max-width: 100%;
    font-size: 11.5pt;  
    line-height: 1.8; 
    color: #444;      
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #ECECEC;
}

::-webkit-scrollbar-thumb {
    background-color: #B0B0B0;
    border-radius: 4px;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: thin;
}

section, h1, h2, footer {
    max-width: 700px;
    display: block;
    margin: auto;
}

h1 {
    margin-top: 1rem;
    font-size: 18pt;  
    font-weight: 600;   
    color: #393939;   
    font-family: 'SUSE', sans-serif;
      
}

h2 {
    font-size: 14pt;
    color: #555;
}

footer {
    margin-top: 2rem;
    text-align: center;
    opacity: 0.25;
    font-size: 11pt;
}

a {
    color: #667788;    
    transition: 0.3s;
    text-decoration: none;
}

section, ul, p, h2 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

a:hover {
    color: #445566;    
}

ul {
    margin-top: 0;
    margin-left: 0;
    padding-left: 1.75rem;
}

.header-wrapper {
    width: 100%;
    font-size: 15pt;
    position: sticky;
    background: linear-gradient(to bottom, #5571b9, rgb(94, 123, 196));
    z-index: 10;
    padding: 0.5rem 0; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
    font-family: "SUSE", sans-serif;
    overflow: visible;
}

.header {
    display: flex;
    list-style-type: none;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    color: rgb(119, 151, 214);
}

.header-link > a > span {
    text-align: center;
    padding: 8px 12px; 
    border-radius: 4px;
    transition: background-color 0.3s ease;
    color: rgb(230, 230, 234);
    margin: 0 10px; 
}

.header-link > a:hover > span {
    background-color: rgba(255, 255, 255, 0.2); 
}

.header-title a {
    color: rgb(230, 230, 234);
    text-decoration: none;
}

@media (max-width: 600px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-link > a > span {
        margin: 5px 0;
    }
}

.card img {
    filter: drop-shadow(0 0 0.25rem rgb(163, 163, 163));
    justify-self: center;
    display: inline-block;
    max-height: 400px;
    max-width: 500px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 2px;
    margin-top: 4px;
    object-fit: contain;
}
