@font-face {
  font-family: "Corbel"; 
  src: url('fonts/CORBEL.TTF');
}

@font-face {
  font-family: "Coder's Crux"; 
  src: url("fonts/crux.eot"); 
  src: url("fonts/crux_iefix.eot") format("embedded-opentype"), url("fonts/crux.woff") format("woff"), url("fonts/crux.ttf") format("truetype"), url("fonts/crux.svg") format("svg"); }


html, body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: Corbel;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body::-webkit-scrollbar {
  display:none;
}

body {
  background-color: #f0efef;
}

.menu {
  background-color: #0d0f1c;
  color: #f0efef;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menuItems {
  display: flex;
  justify-content: space-around;
  width: 40vw;
  margin-bottom: 1vh;
  margin-right: 2vw;
}


.menuItem {
  font-size: 1.2vw;
  cursor: pointer;
}

.contentRow{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #0d0f1c;
}

.contentRow:nth-child(even) {
  background-color: #0d0f1c;
  color: #f0efef;
}

.contentHeader::before {
  color: #93c83e;
  content: "[";
  margin-right: 2px;
}
.contentHeader {
  font-size: 2.5vw;
  margin-top: 3vh;
  margin-bottom: 2vh;
  font-family: "Coder's Crux";
}
.contentHeader::after {
  color: #93c83e;
  margin-left: 4px;
  content: "_]";
}
a, a:active, a:visited {
  color: #f0efef;
  text-decoration:none;
}

.contentBlock {
  width: 30vw;
  margin-left: 2vw;
  margin-right: 2vw;
}


.contentText:last-child {
  margin-bottom: 3vh;
}

.contentText {
  margin-bottom: 2vh;
  font-size: 1.2vw;
}

.contentBullet {
  margin-left: 0;
  margin-bottom: 1vh;
  font-size: 1.2vw;
  list-style-type:none;
}
.contentBullet:last-child {
  margin-bottom: 3vh;
}

.contentRow:nth-child(even) .contentBullet a { 
  color: #f0efef;
}


.contentBullet::before{
  color: #93c83e;
  content: "[ _ ]";
  margin-right: 10px;
}
.contentBullet a {
  color: #0d0f1c;
}
.contentRow ul {
  padding-inline-start: 0px;
}
.nobullet::before {
  color: #f0efef;
}
.contentRow:nth-child(even) .nobullet::before {
  color: #0d0f1c;
}

#logoImage {
  width: 30vw;
  max-width: 250px;

  margin-left: 2vw;
  margin-top: 2vh;
  margin-bottom: 1vh;
}

.darkBlue {
  color: #0d0f1c;
}

.gray {
  color: #717071;
}

.green {
  color: #93c83e;
}

.grayWhite {
  color: #f0efef;
}

@media screen and (max-width: 1024px){
  .menuItem {
    font-size: 2.5vw;
  }
  
  .contentHeader{
    font-size: 4.5vw;
  }

  .contentBlock {
    width: 70vw;
  }

  .contentText {
    font-size: 2.5vw;
  }

  .contentBullet {
    font-size: 2.5vw;
  }
}

