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: 14px;
  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:white;
  text-shadow: 0px 0px 5px white;
  text-decoration: none;
}


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

/*-----------------Header-----------------*/
.header{
    max-width:1045px;
    height:100%;
    margin:auto;
    padding:5px;
}

/*-----------------Navigation-----------------*/
.nav {
  display: flex;
  flex-wrap: wrap;
  margin: 20px;
  gap: 8px;
}

.nav a{
  margin:0px;
  font-size: 14px;
  font-weight:bold;
  padding: 10px 20px 10px 20px;
  align-items: center;
  color:white;
  width:300px;
}

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

.button{
  background-color:#00D1BA;
}

.button:hover{
}

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

/*-----------------Main Content-----------------*/
.flex{
  display: flex;
  flex-direction:row;
  justify-content: center;
  margin-top:20px;
  max-width:2560px;
  column-gap: 5px;
}

/*-----------------Left Sidebar*-----------------*/
.left-side{
  height: 100%;
  max-width: 250px;
  background-color:#030C37;
  border: 1px solid #00D1BA;
  padding: 20px;
  border: 1px solid #00D1BA;
  order:1;
}

.profile {text-align:center;
font-weight:bold;
}


/*-----------------Main-----------------*/
.main{
  height: 100%;
  width: 800px;
  padding: 20px;
  background-color:#030C37;
  border: 1px solid #00D1BA;
  order:2;
  }

.hello p{
  line-height:1.75;
}

.coolsites, .song{
    text-align:center;
  }
  
/*-----------------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: 1045px;
    font-size: 16px;
    text-align: center;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding:2px;
}