html, body{
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}
body{
    margin: 0;
    /* font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji; */
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}
main{
    margin: 50px 0;
    padding: 10px;
    padding-top: 40%;
}

#site-header {
    width: 100%;
    top: 0;
    left: 0;
    position: fixed;
    background-color: #fff;
    z-index: 9999;
    overflow: visible;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-block-start: 1rem;
    padding-block-end: 1rem;

    flex-direction: column;
    align-items: center;
}

#site-header .custom-logo-link {
    width: 100%;
    margin: auto;
}

#site-header .custom-logo-link img {
    border-style: none;
    /* height: auto; */
    max-width: 100%;
}

#site-header .site-navigation {
    margin-top: 15px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    width: 100%;
}
#site-header .site-navigation ul.menu {
    display: flex;
}
#site-header .site-navigation ul.menu, .site-navigation ul.menu ul {
    list-style-type: none;
    padding: 0;
}
#site-header .site-navigation ul.menu li a {
    display: block;
    padding: 8px 15px;
    color: black;
    text-decoration: none;
}
#site-header .site-navigation ul.menu li a span {
    font-family: poppins;
    font-weight: 400;
    line-height: 1.5;
}