:root{
    --Header: #0073f7;
    --SecondaryHeader: #015cc5;
}

* {
    box-sizing: border-box;
  }

body{
    background-color: #eeeeee;
}

p,h1,h2,h3,h4,a{
    font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
a{
    color: var(--SecondaryHeader);
    font-weight: bolder;
    text-decoration: none;
}

header{
    background-color: var(--Header);
    padding: 5px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    font-weight:bolder;
}

footer{
    background-color: var(--Header);
    padding-left: 5px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    font-weight:bolder;
    height: 3em;
    color: #fff;
}

.title{
    text-decoration: none;
    color: #fff;
    font-weight: bolder;
    margin: 10px;
    float: left;
}
.headerurl,.mbdropdown, .mbheaderurl{
    text-decoration: none;
    color: #fff;
    float: right;
    margin: 10px;
    position:relative;
    border-right: #fff 1px solid;
    padding: 5px;
    padding-right: 10px;
    text-align: center;
}

.mobileStuff{
    background-color: #0073f7dc;
    position: absolute;
    right: 0;
    top: 4.3em;
    width: 45%;
    text-align: right;
    padding: 10px;

}

.mbheaderurl{
    border: none;
}
.maincontent{
    margin: auto;
    margin-top: 6em;
    margin-bottom: 6em;
    width: 90%;
    z-index: -1;
}

img{
    width: 80%;
    height: auto;
}

#selheaderurl{
    background-color: var(--SecondaryHeader);
    border-radius: 4px;
    border: none;
}

#mbdropdownspan{
    height: 1.3em;
    width: 1.3em;
    font-size:2em;
}

#blogcontent{
    width: 100%;
    list-style: none;
    padding: 0px;
}

.blogItem{
    background-color: #015cc5;
    width: 100%;
    height: auto 4em;
    border-radius: 4px;
}

.blogItemurl{
    width: 100%;
    height: 100%;
    z-index: 3;
    display:flex;
    color: #fff;
}


.smallblogtitle{
    padding-left: 10px;
}