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;
   
}

/*CSS Rules for google fonts*/
.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;
}

/*End of Google Font Rules*/

/*CSS Rules for Container laying for pages using Grid*/
.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;
    
  }

  

  .container > div {
    background-color: #f8f4ef;
    padding: 10px;
  }
  .container > div.header {
    grid-area: header;
    text-align: center;
    background-color: #000000;
  }
  .container > div.menu {
    grid-area: menu;
  }

  .container > div.content {
    grid-area: content;
  }
  .container > div.footer {
    grid-area: footer;
  }

  .center{
    text-align: center;
  }

  h3 {
    font-size: 25px;
    text-indent: 15px;
    line-height: 1.5em;
    justify-content: space-evenly;
    
  }
  /*End of Container Rules*/
  
  /*CSS Rules for Menu class with ul and li's*/
  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: 20px; 
  }

  .contact-ul li {
    padding: 5px;

  }

.menu a:link{
    color: rgb(204, 0, 255);
}
.menu a:visited {
    color: white;

}
div.header{
  background-color: black;
}

li{
  list-style: none;
}
/*End of menu rules*/
 
/*Rules for all things that involve Flex*/

.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;
}

.footer-flex{
  display: flex;
  flex-direction: row;
}

/*End of Flex Rules*/

/*CSS Rules for imgs involving Flex*/
.flex-imgs{
  display: flex;
}

.flex-imgs img {
  padding: 20px;
}

 
 
  .brain-img{
    float:right;
    padding: 5px;
  }

  .skater-img{
    margin-top: 100px;
    height: 250px;
  }

  .pro-img{
    margin: auto;
    width: 550px;
  }

  /*End of CSS rules for imgs involving Flex*/

 
 /*CSS Rules for Cards on project page*/
  .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;
}
/*End of Card rules for project page*/


/*Rules for form on contact page*/

.form-container{
  width:400px;
  margin: 0;
}

.form{
  margin-bottom: 20px;
  display: flex;
    flex-direction: column;
    text-align: center;
}

input[type="text"],
input[type="email"],
textarea{
  width: 100%;
  padding: 10px;
}

label{
  font-size: 20px;
  padding: 5px;
}
.success-message {
  color: green;
  margin-top: 10px;
  text-align: center;
}

.error-message {
  color: red;
  margin-top: 10px;
  text-align: center;
}

button {
  font-size: 25px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: black;
  color: rgb(204, 0, 255);
  cursor: pointer;
}

/*End of Contact Form rules*/

.animate__animated {  /*CSS rule for animation Fade-In*/
  animation-duration: 12s;
}

iframe{   /*Iframe adjustment for interviews pdf documentation*/
  padding:5px;
  margin: 5px;
}

.question-topic{  
  text-decoration: underline;
  color:black;
}

/*CSS Rules for tablet devices */
@media only screen and (max-width: 992px){
 
  .pro-img{
    margin: auto;
    max-width: 450px;
  }
  .brain-img , .lang-img , .skater-img{
    margin: auto;
}
.flex-imgs {
  flex-direction: column;
}
  .flex-container{
    display: flex;
    flex-direction: column;
}

h3{
  font-size: 20px;
  line-height: 1.6em;
}

iframe{
  max-width: 98%;
}

.pdf-flex{
  display: flex;
  flex-direction: column;
}

.menu li {
  font-size: 18px;
  margin: 5px;
}

}

/*CSS Rules for Mobile Devices*/
  @media only screen and (max-width: 600px) {

    img {
      width: 50%;
    }
   
    .brain-img , .lang-img , .skater-img{
        margin: auto;
    }

    .pro-img{
      margin: auto;
      max-width: 250px;
    }
    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;
  }

  .pdf-flex{
    display: flex;
    flex-direction: column;
  }
  iframe{
    width:95%;
    margin: 5px;
  }

 
  }