html{
    box-sizing: border-box;
    background: linear-gradient(90deg, transparent 50%, #702963 50%),linear-gradient(to bottom, transparent 50%, #70296380 50%);
    background-size: 3em 3em;
    background-color: #000000;
    opacity: 1;
   
}
.container {
    display: grid;
    grid-template-areas:
      "header header"
      "menu menu"
      "content content"
      "footer footer";
    grid-template-columns: 1fr 3fr;
    gap: 15px;
    padding: 20px;
    margin: 0px 80px 0px 80px;
    
  }

  .footer-flex{
    display: flex;
    flex-direction: row;
  }

  .sriracha-regular {
    font-family: "Sriracha", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
.noto-sans-uniquifier {
  font-family: "Noto Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
  
  .container > div {
    background-color: #f8f4ef;
    padding: 10px;
  }
  .container > div.header {
    grid-area: header;
    text-align: center;
  }
  .container > div.menu {
    grid-area: menu;

  }
  div.menu ul{
    display: flex;
    justify-content: space-evenly;
    list-style: none;
  }
  .menu li {
    font-size: 24px;
    border: 3px solid #5f0771;
    border-radius: 15px;
    background-color: black;
    padding: 8px; 
  }

  .contact-ul{
   font-size: 30px; 
  }

  .contact-ul li {
    padding: 5px;

  }

.menu a:link{
    color: rgb(204, 0, 255);
}
.menu a:visited {
    color: white;

}
  .container > div.content {
    grid-area: content;
  }
  .container > div.footer {
    grid-area: footer;
  }

div.header{
    background-color: black;
}
.flex-container{
    display: flex;
    justify-content: space-evenly;
}
.Iflex{
  display: flex;
  flex-direction: column-reverse;
}
.IFlex-container {
  display: flex;
  flex-direction: column;
  padding: 5px;

}

.IFlex-container h2 , h1 {
  color: #750c94;
}
.i-flex-nav{
  border: solid black 1px;
 
}

.i-flex-nav ul {
  display: flex;
  justify-content: space-around;
}

.pdf-flex{
  display: flex;
}

iframe{
  padding:5px;
}

.flex-imgs{
  display: flex;
}

.flex-imgs img {
  padding: 20px;
}
li{
  list-style: none;
}

  .center{
    text-align: center;
  }

  h3 {
    font-size: 25px;
    text-indent: 15px;
    line-height: 1.5em;
    justify-content: space-evenly;
    
  }
  .animate__animated {
    animation-duration: 12s;
  }
  .brain-img{
    float:right;
    padding: 5px;
  }

  .skater-img{
    margin-top: 100px;
    height: 250px;
  }

  button {
    font-size: 25px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: black;
    color: rgb(204, 0, 255);
    cursor: pointer;
  }

  .question-topic{
    text-decoration: underline;
    color:black;
  }

  /*Form Rules for signup and login*/

  .form {
    display: flex;
    flex-direction: column;
    text-align: center;
  
  }

  .form input{
    padding: 10px ;
  }

  .grid {
    display: grid;
    gap: 1rem;
}

.card {
  border: 1px solid black;
  padding: 1rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.card-text{
  padding: 5px;
  font-size: 18px;
  line-height: 1.6em;
  text-indent: 15px;
}

.span-all {
  grid-column: 1 / -1;
}



  @media only screen and (max-width: 600px) {
    img{
        max-width: 50%;
    }
    .brain-img , .lang-img , .skater-img{
        margin: auto;
    }
    h3{
        font-size: 22px;
        line-height: 1.3em;
    }
    .flex-container{
        display: flex;
        flex-direction: column;
    }
    div.menu ul{
        display: flex;
        justify-content: space-evenly;
        padding: 5px;
      }

    .menu li {
        font-size: 12px;
        margin: 3px;
        padding: 5px;
        text-align: center;
    }
    .container{
      margin: auto;
    }

    .flex-imgs {
      flex-direction: column;
    }

    .contact-ul li {
      font-size: 20px;
    }

    button{
      font-size: 15px;
      padding: 10px;
    }

    .i-flex-nav ul {
      padding:10px;
    }

    
  .footer-flex{
    display: flex;
    flex-direction: column;
  }
  }