/* global styles*/
* {
  padding: 0;
  margin: 0;
}

h1 {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 2rem;
  margin: 5vw 20vw 5vw 20vw;
  text-align: center;
}

h2 {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 1.8rem;
  margin: 5vw;
}

h3 {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 1.4rem;
  margin: 5vw;
}

p {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 1.3rem;
  margin: 5vw;
}

a {
  font-family: 'Roboto', sans-serif;
  color: white;
  font-size: 1rem;
}

video {
  z-index: -1;
  background-color: white;
}

button {
  padding: 0 20px 0 20px;
  font-size: 1.8rem;
  background-color: #ffd00d;
  border: none;
  margin: 0 25vw 0 25vw;
  cursor: pointer;
  border-radius: 10%;
}

/* body */
body {
  background-color: #212931;
  display: flex;
  flex-direction: column;
}

/* navigation */
nav {
  height: 6vh;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
}

#logo {
  height: 8vh;
  padding: 0px;
  margin: 0 0 0 0;
}

#burger {
  margin: 0 0 0 85vw;
  padding: 0;
  z-index: +10;
  position: fixed;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url('./burger.png');
  width: 45px;
  height: 45px;
  -webkit-transition: background-image 0.2s ease;
  transition: background-image 0.2s ease;
}

.links {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 0;
  top: 8vh;
  background-color: #212931;
  width: 100vw;
  height: 100vh;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s;
}

.links a {
  font-size: 1.8rem;
  padding: 2rem;
  text-decoration: none;
  cursor: pointer;
  color: #ffd00d;
}

.nav-anim {
  transform: scaleX(1);
}

/* main content */
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
}

.content img {
  max-height: 50vh;
  max-width: 90vw;
  margin: 0 5vw 0 5vw;
}

.checklist {
  display: flex;
  flex-direction: column;
}

.image-text-container {
  text-align: left;
  margin: 0 5vw 5vw 5vw;
}

.image-text-container p {
  margin-top: 0;
  margin-left: 0;
}

.image-text-header img {
  max-width: 50px;
  margin: 0;
}

.image-text-header h3 {
  margin-left: 0;
}

.image-text-header {
  margin-left: -10px;
  display: flex;
  align-items: center;
}

hr {
  height: 10px;
  width: 80vw;
  background-color: #ffd00d;
  border: none;
  margin: 5vw;
  border-radius: 20%;
}

/*
<-----team bios----->
*/
#team-intro {
  width: 95vw;
  align-items: center;
}

.team-header {
  color: #ffd00d;
}

.bio-header {
  color: #ffd00d;
}

.bio {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 5vh;
}

.bio img {
  height: 70vh;
}

.bio h1 {
  margin: 0 0 0 5vw;
}

.bio p {
  margin: 0 0 0 5vw;
}

/*
<-----contact form----->
*/

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact a {
  color: #ffd00d;
  font-size: 1.8rem;
}

/* 
<-----footer-----> 
*/

footer {
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffd00d;
  white-space: nowrap;
  margin-top: 5vh;
}

footer img {
  width: 100%;
}

.footer-links {
  margin: 10vw;
  width: 80%;
  display: flex;
  justify-content: space-between;
}

.footer-links a {
  text-decoration: none;
  color: black;
}

/* media queries for tablet screens*/
@media only screen and (min-width: 1024px) {
  /* global styles */
  h1 {
    font-size: 2.3rem;
    margin: 0 0 0 2.5vw;
  }

  h2 {
    font-size: 1.8rem;
    margin: 0 0 0 2.5vw;
  }

  p {
    font-size: 1.4rem;
    margin: 0 0 0 2.5vw;
  }

  a {
    font-size: 2rem;
  }

  /* nav */

  nav {
    width: 100%;
  }

  #logo {
    width: 100vw;
    height: auto;
  }

  #burger {
    display: none;
  }

  .links {
    flex-direction: row;
    justify-content: space-evenly;
    right: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0);
    max-width: 55vw;
    height: 8vh;
    transform: none;
  }

  .links a {
    padding: 0;
    width: 23vw;
    color: #212931;
  }

  .links button {
    padding: 0;
    margin: 0;
  }

  /* main content */

  .content {
    margin-top: 15vh;
    width: 100%;
    align-items: center;
  }

  .section-one {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 20vh 30vh;
    column-gap: 20px;
    width: 100%;
  }

  .section-one h1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 90%;
    text-align: center;
    margin-left: 0;
  }

  .section-one p {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 90%;
  }

  .section-one video {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 90%;
  }

  .section-one img {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin: 0;
    width: 90%;
  }

  .section-two {
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 15vh 25vh 25vh;
    column-gap: 20px;
    width: 100%;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .section-two h1 {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 90%;
    text-align: center;
    margin-left: 0;
  }

  #section-two-p-one {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    width: 90%;
  }

  #section-two-p-two {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    width: 90%;
  }

  .section-two img {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin: 0;
    width: 90%;
  }

  .section-two a {
    display: none;
  }

  .checklist {
    flex-direction: row;
    width: 100%;
  }

  .image-text-container {
    margin: 0 2.5vw 0 2.5vw;
    width: 30vw;
  }

  .image-text-container h3 {
    margin: 0;
    font-size: 1.8rem;
  }

  .image-text-container p {
    margin: 0;
    font-size: 1.4rem;
  }

  .image-text-header img {
    width: 10%;
  }

  .solution-p-group {
    display: flex;
    margin: 10vh 2.5vw 10vh 0;
  }

  #setup-img {
    max-height: 150vh;
  }

  /* team page */

  #team-intro {
    text-align: center;
    font-size: 1.8rem;
    width: 90%;
    margin: 0;
  }

  .team-header {
    margin: 20px;
    font-size: 3rem;
    font-style: bold;
  }

  .bio-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .bio {
    width: 35%;
  }

  .bio h1 {
    margin: 0;
    padding: 0;
  }

  .bio img {
    max-height: 300px;
    max-width: 300px;
    margin: 0;
  }

  .bio p {
    margin: 0;
  }

  /* footer */
  .footer-links {
    margin: 0 10vw 0 10vw;
  }
  footer img {
    width: 50%;
  }
}

/* media query for full size screens */
@media only screen and (min-width: 1920px) {
  #logo {
    width: 100vw;
    height: auto;
  }

  .links a,
  button {
    font-size: 3rem;
    top: 5vh;
  }

  h1 {
    font-size: 3.5rem;
  }

  p {
    font-size: 2rem;
  }

  .section-two {
    grid-template-rows: 15vh 30vh 30vh;
  }

  .image-text-container h3 {
    margin: 0;
    font-size: 3rem;
  }

  .image-text-container p {
    margin: 0;
    font-size: 2rem;
  }

  /* team page */

  #team-intro {
    font-size: 3rem;
  }

  .team-header {
    font-size: 4rem;
  }

  .bio {
    width: 30%;
  }

  .bio h1 {
    margin: 0;
  }

  .bio img {
    max-height: 500px;
    max-width: 500px;
    margin: 0;
  }

  .bio p {
    margin: 0;
  }
}
