
html{
    scroll-behavior: smooth;
    
}

img.eola{
    border: 2px solid black;
    width: 100%;
    border-radius: 40px;
}

img.float-right-image{
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 40px;
    width: 400px;
    float: right;
}

img.float-left-image{
    margin-top: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    border: 2px solid black;
    border-radius: 40px;
    width: 400px;
    float: left;
}

h1{
    font-size: 48px;
    font-family: sylfaen;
    font-style: italic;
    text-align: center;
    background-color: black;
    color: white;
   
    margin-bottom: 10px;
}

h2{
    font-size: 36px;
    font-family: sylfaen;
}

h3{
    font-size: 24px;
    font-family: sylfaen;
}

a{
    font-size: 16pt;
    font-family: interpol-sans;
}

p{
    font-size: 16pt;
    font-family: interpol-sans;
}

pre{
    font-size: 16pt;
    font-family: interpol-sans;
}

li{
    font-family: interpol-sans;
}


img.api{
    width:20%;
}

#banner-image{
    padding: 0pt;
    margin: 0pt;
    border: 0pt;
}



/* */
.menu-item:hover{
    background-color: white;
    color: black;
}

/* Fixed menu at top of page */
.menu{
    display: flex;
    background-color: black;
    text-align: center;
    width: 100%;
    height:10%;
    padding: 0pt;
    margin: 0pt;
    position: fixed;
    top: 0;
}

.menu-item-container{
    display:block;
    height: 100%;
    width: 100%;
    text-decoration: none;
    color: inherit;
    background-color: inherit;
    transform: rotate(25);
}


/* Image in the header */
.menu-image{
    height: 100%;
    border-right: 2px solid white;
}

/* Each item in the header */
/* This was flex before. Not sure how this will work out */
.menu-item{
    display: grid;
    color: white;
    height: 100%;
    font-size: 20pt;
    text-align: center;
    align-items: center;
    transition: .3s;
}

/* Drop the border off the leftmost element in the header */
.menu-item-left{
    border-left: 0px;
}

/* Drop the border off the rightmost element in the header */
.menu-item-right{
    border-right: 0px;
}

p.menu-text{
    margin: 0px;
}

.menu-item-dropdown{
    justify-content: center;
    width: 20px;
}


.flexbox{
    display: flex;
    width: 100%;
    text-align: center;
}

.flexitem{
    flex:1;
    text-align: left;
    background-color: grey;
    border: 2px solid black;
    margin: 40px;
    border-radius: 40px;
}

.centered{
    text-align: center;
}

/* Body including margin */
body{
    padding: 0;
    margin: 0;
    background-color: white;

}


/* Width of the actual body */
.body-elements{
    border-radius: 10px;
    margin: 0px auto 20px auto;
    padding: 0px 20px 0px 20px;
    background-color: white;
    
}

/* Placeholder so anchors will actually take the viewer to the correct height */
.head-block{
    height:10vh;
}

@font-face{
    font-family: "CursiveFont";
    src:
        local("CursiveFont"),
        url("cursive.otf"), format("opentype")
}

div.icon-text{
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0px;
}

p.icon-text{
    margin: 0px;
    padding: 0px;
}

.signature{
    font-size: 40pt;
    font-family: CursiveFont;
    margin: 0px;
    padding: 0px;
}

#bitshift-footer{
    width: 25%;
    float: right;
    margin-bottom: 40px;
}

/* Mobile hacks */
@media (max-width: 600px){

img.float-right-image{
    display: none;
}

img.float-left-image{
    display: none;
}

.menu-item{
    font-size: 16px;
}

}

