body {
  background-color: #030C37;
  opacity: 1;
  background-image: radial-gradient(#00D1BA 0.8500000000000001px, #030C37 0.8500000000000001px);
  background-size: 17px 17px;
  height: 100%;
  margin-top:50px;
  padding:0;
  font-size: 16px;
  color: white;
  font-family: open sans;
}

h2 {
  font-family: open sans;
  font-size:20px;
  color:#FF72C0;
}

hr{
  border: 1px dashed #00D1BA;
  max-width:100%;
}

/*-----------------Body Font-----------------*/
@font-face {
  font-family: open sans;
  src: url(fonts/OpenSans-Regular.ttf);
}


/*-----------------Body Links-----------------*/
/*-----------------unvisited link-----------------*/
a:link {
  color:#00D1BA;
  text-decoration: none;
  font-weight:bold;
}

/*-----------------visited link-----------------*/
a:visited {
  color:#00D1BA;
  text-decoration:none;
}

/*-----------------mouse over link-----------------*/
a:hover {
  color:#85fff2;
  text-shadow: 0px 0px 8px white;
  text-decoration: none;
}


/* -----------------selected link-----------------*/
a:active {
  color:#00D1BA;
  text-decoration:none;
}

/*-----------------Header-----------------*/
.header{
    max-width:1412px;
    height:100%;
    background-color: #030C37;
    border-top-right-radius: 40px;
    border: 1px solid #00D1BA;
    margin:auto;
    padding:5px;
}

/*-----------------Navigation-----------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
  justify-content: space-evenly;
}

.nav a{
  margin:0px;
  font-size:16px;
  font-weight:bold;
  padding: 10px 40px 10px 30px;
  display: flex;
  align-items: center;
  color:white;
}

/*-----------------Navigation Buttons----------------*/

.button{
  background-color:#00D1BA;
  max-width: 250px;
}

.button:hover{
}

.button:active {
  transform: translateY(2px);
  color:white;
}

/*-----------------Flex-----------------*/
.flex{
  margin-top:20px;
  margin-left:auto;
  margin-right:auto;
  max-height:100%px;
  max-width: 1000px;
  background-color:#030C37;
  border: 1px solid #00D1BA;
  box-shadow: -8px 8px #00D1BA;
  padding: 20px;
  border-top-right-radius: 40px;
}

.about{
  line-height:2;
}


/*-----------------Mobile-----------------*/
  @media only screen and (max-width: 800px) {
    .flex {
        flex-direction: column;
    }
    .left-side, .right-side{
        max-width: unset; /* i added this so the left sidebar fills the screen*/
    }
}

@media only screen and (max-width: 500px){
      .flex{max-width: 100%;
      height:auto;
}
}


/*-----------------Gripper-----------------*/
  .gripper{
    display:flex;
    justify-content:center;
    color: white;
    max-width: 790px;
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding:2px;
    background-color: #030C37;
    border: 1px solid #00D1BA;
}