:root {
  --primary: #ff004f;
  --secondary: #04aa6d;
  --tertiary: #3f51b5;
  --quaternary: #ffa500;
  --header: #2f3030;
  --footerText: #dfdfe0;
  --bodyBg: #080808;
  --commonBg: #262626;
}

/* Download Button */

.Download {
  padding: 8px 16px;
  font-size: 20px;
  color: #fff;
  border: 2px solid #007bff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
  padding-right: 20px;
}

.Download:hover {
  background-color: #007bff;
  border: 2px solid #f1f1f1;
  color: #fff;
}



/* Media Section  */
/* Less than 870px */
@media screen and (max-width: 1000px) {
  nav .fa-solid {
    display: block;
    font-size: 30px;
  }
  nav img {
    margin-left: 30px;
  }

  .fa-solid {
    margin-right: 30px;
  }

  nav ul {
    background: var(--secondary);
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    padding-top: 50px;
    z-index: 2;
    transition: right 0.8s;
  }

  nav ul li {
    display: block;
    margin: 25px;
    text-align: center;
  }
  nav ul .fa-solid {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }
}

/* Below 600px Display */
@media screen and (max-width: 600px) {

  nav .fa-solid {
    display: block;
    font-size: 25px;
  }
  nav ul {
    background: var(--secondary);
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 50vh;
    padding-top: 50px;
    z-index: 3;
    transition: right 0.6s;
  }

  nav ul li {
    display: block;
    margin: 25px;
  }
  nav ul .fa-solid {
    position: absolute;
    top: 25px;
    left: 25px;
    cursor: pointer;
  }
  .subtitle {
    font-size: 40px;
  }
  .aboutCol1,
  .aboutCol2 {
    flex-basis: 100%;
  }
  .aboutCol2 {
    margin-bottom: 30px;
  }
  .aboutCol1 {
    font-size: 14px;
  }
  .tabLinks {
    font-size: 16px;
    margin-right: 20px;
  }
  .contactLeft,
  .contactRight {
    flex-basis: 100%;
  }
  .copyright {
    font-size: 14px;
  }
}

/* Below 435 */

@media screen and (max-width: 435px) {

  nav img {
    width: 150px;
    height: auto;
  }

  nav img {
    margin-left: 25px;
  }

  .fa-solid {
    margin-right: 25px;
  }

  nav ul {
    background: var(--secondary);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 52vh;
    padding-top: 50px;
    z-index: 4;
    transition: right 0.5s;
  }

}

@media screen and (max-width: 360px) {
 
  nav ul {
    background: #04aa6d;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 55vh;
    padding-top: 50px;
    z-index: 5;
    transition: right 0.4s;
  }
}

@media screen and (max-width: 280px) {
  nav ul {
    background: var(--secondary);
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 53vh;
    padding-top: 50px;
    z-index: 5;
    transition: right 0.4s;
  }

}
