@font-face {
  font-family: SpaceGrotesk;
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  }

body {
    background-color: #CCCCCC;
}

body::after {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    z-index: -1;
    content: url(../imgs/Bluesky.png);
}
/* the above styling is to prevent image flickering when loading the site
images are pre-loaded using the ':after' style*/ 

a {
    cursor: pointer;
}

.header-block {
    width: 100%;
    height: 60px;
    background-color: #e6fffe;
    display: flex;
    justify-content: space-between;
}

.header-main-logo {
    width: fit-content;
    height: 100%;
    padding-left: 60px;
    display: flex;
}

.header-main-logo img {
    height: 60px;
    align-self: center;
}

.header-main-nav{
    width: fit-content;
    height: 100%;
}

.header-main-nav ul {
    margin-left: 30px;
}

.header-main-nav ul li {
    display: inline;
    float: left;
}

.header-main-nav ul li a {
    padding: 0 10px;
    font-family: 'SpaceGrotesk', sans-serif;
    line-height: 60px;
    color: #000;
    display: block;
    height:100%;
}

.header-main-nav ul li a:hover {
    color: #4f3177;
}

.header-main-sm {
    width: fit-content;
    height: 100%;
    padding-right: 60px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.header-main-sm-bsky {
    width: 20px;
    height: 20px;
    background-image: url(../imgs/Blueskyblack.png);
    background-repeat: no-repeat;
    background-size: contain;
}
/*if the image is cutoff use bg-size'contain' instead of 'cover'*/

.header-main-sm-bsky:hover {
    background-image: url(../imgs/Bluesky.png);
}