:root {
  box-sizing: border-box;
}

.backer {
  background-image: linear-gradient(to bottom, rgb(85, 146, 142), white);
  width: 100%;
}

body {
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  padding: 10px;
  background-color: rgb(11, 86, 76);
  width: 100%;
  height: 100px;
  display: flex;
  margin: auto;
  align-content: center;
  align-items: center;
  color: rgb(189, 213, 194);
  font-size: 30px;
  border-bottom: 2px double grey;
  justify-content: space-between;
}

h1 {
  font-family: 'pixelify sans';
}

h1:hover {
  color: white;
  scale: 1.01;
}

main {
  margin-top: 150px;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: auto;
  justify-content: center;
}

li {
  list-style: none;
  border-radius: 8px;
  width: 90%;
  font-size: larger;
}

ul {
  font-size: large;
}

ol {
  font-size: medium;

  border-radius: 8px;
  width: 90%;
}

section {
  margin: 50px;
}

.instructions {
  height: 100%;
  max-width: 40%;
  text-align: center;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255),
    rgba(196, 194, 194, 0.756)
  );
  border-radius: 15px;
  margin: 20px;
  color: rgb(11, 86, 76);
  display: flex;
  justify-content: center;
  align-content: center;
  border: 3px solid rgba(11, 86, 76, 0.605);
  margin-bottom: 75px;
}

.depend {
  background-color: black;
  font-family: monospace;
  color: rgb(2, 255, 2);
  text-align: center;
  width: fit-content;
  justify-content: center;
  margin: auto;

  margin-bottom: 15px;
  padding: 15px;
}

.instruct {
  width: 100%;
  padding-right: 30px;
}

.link {
  font-style: italic;
  background-color: black;
  font-size: 16px;
  font-family: monospace;
  color: rgb(2, 255, 2);
  text-align: center;
  padding: 10px;
  justify-content: center;
  margin: 5px auto;
}

.highlight {
  filter: opacity(80%);
  font-style: italic;
  font-size: 30px;
}

.demo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 15px;
  margin: 25px;
  width: 100%;
  max-width: 40%;
}

.demo-para {
  height: 100%;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255),
    rgba(196, 194, 194, 0.756)
  );
  border-radius: 15px;
  margin: auto;
  color: rgb(11, 86, 76);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  border: 3px solid rgba(11, 86, 76, 0.605);
  margin-bottom: 25px;
}

.demo-para {
  font-size: 25px;
  max-width: 80%;
}

.vid {
  display: flex;
  justify-content: center;
  margin: auto;
  height: fit-content;
  border-radius: 15px;
  width: 500px;
  max-width: 90%;
}

.vid:hover {
  border: 3px solid rgba(11, 86, 76, 0.605);
}

.screenshots {
  display: flex;
  width: 100%;
  height: 300px;
  justify-content: center;
  margin: 25px;
  align-content: center;
}

.title {
  font-size: 40px;
  color: rgb(6, 121, 38);
}

.screenshot {
  margin: auto 10px;
  border-radius: 8px;
  width: 300px;
  height: 100%;
  max-height: 300px;
  max-width: 25%;
}

.screenshot2 {
  margin: 15px;

  width: 100px;
  height: 100px;
  z-index: 5;
}

.screenshot2:hover {
  animation: wiggle 2s linear infinite;
}

.float {
  position: absolute;
  left: 0;
  margin-left: 100px;
  font-family: 'anton';
}

h3 {
  color: rgb(11, 86, 76);
  -webkit-text-stroke: 0.5px white;

  font-size: xx-large;
}

.repo {
  font-size: x-large;
  text-align: center;
  margin: auto;
  margin-top: 45px;
}

.repo a {
  text-decoration: none;
  color: white;
}

.footer {
  display: none;
}

ol:hover {
  background-color: rgb(11, 86, 76);
  color: white;
  scale: 1.2;
  transition: ease-in 0.5s;
}

.screenshot:hover {
  scale: 1.3;
  transition: ease-in 0.3s;
  z-index: 6;
}

.code {
  background-color: black;
  font-family: 'pixelify sans';
  font-size: large;
  color: rgb(2, 255, 2);
  text-align: center;
  width: fit-content;
  justify-content: center;

  padding: 10px;
  margin: 15px auto;
}

.repo a:hover {
  color: rgb(89, 212, 89);
}

.main {
  background-color: rgb(11, 86, 76);
  font-size: larger;
  color: white;
  text-align: center;
  padding: 10px;

  border: 1px dashed white;
}

.link a {
  text-decoration: none;
  color: rgb(2, 255, 2);
  font-family: 'monospace';
}

@keyframes wiggle {
  0%,
  7% {
    transform: rotateZ(0);
  }
  15% {
    transform: rotateZ(-15deg);
  }
  20% {
    transform: rotateZ(10deg);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  30% {
    transform: rotateZ(6deg);
  }
  35% {
    transform: rotateZ(-4deg);
  }
  40%,
  100% {
    transform: rotateZ(0);
  }
}

@media screen and (max-width: 750px) {
  .container {
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding: 0;
  }

  .screenshots {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-content: center;
    margin-right: -25px;
    margin: auto;
    height: 100%;
    max-height: fit-content;
  }

  .screenshot {
    width: 80vw;
    max-width: 400px;
    margin: 5px auto;
    height: 400px;
  }

  .screenshot:hover {
    scale: 1.5;
  }

  .float {
    margin-left: 50px;
  }

  .footer a {
    color: white;
    width: 100%;
  }

  .backer {
    height: fit-content;
  }
  .header {
    font-size: 12px;
    height: fit-content;
  }
  .header h1 {
    margin-top: 15px;
    font-family: 'pixelify sans';
  }
  .header h1:hover {
    color: white;
    scale: 1.01;
  }

  .demo {
    max-width: 80%;
    margin: auto;
    margin-bottom: 25px;
  }
  main {
    margin-top: 150px;
  }

  .highlight {
    font-size: 22px;
  }

  .container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    justify-content: center;
  }

  section {
    margin: 50px;
  }
  .instructions {
    height: 100%;
    max-width: 80%;
    background-image: linear-gradient(
      to right,
      rgba(255, 255, 255),
      rgba(196, 194, 194, 0.756)
    );
    border-radius: 15px;
    margin: 15px auto;
  }

  .instruct {
    width: 100%;
    margin: auto auto;
  }

  .backer {
    justify-content: center;
    display: flex;
  }

  .vid {
    width: 90%;

    margin: auto;
    margin-bottom: 150px;
  }

  .repo a {
    width: 100%;
    text-align: center;
    margin: auto;
  }

  .repo {
    display: flex;
    justify-content: center;
  }

  .link {
    font-size: 12px;
  }

  .screenshots {
    margin-top: -25px;
  }
}

@media (max-width: 700px) {
}
