.learnbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  background: black;
  width: 80px;
  height: 35px;
  margin-top: 10px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  color: white;
  padding: 9px 0;
  border: 1px;
  font-size: 1rem;
  margin: 30px auto;
  width: 180px;
  height: 60px;
}
.learnbtn:hover {
  color: black;
  background: grey;
}
@media (max-width: 600px) {
  .learnbtn {
    font-size: 20px;
    width: 100%;
    height: 50px;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px;
  }
}
.loginbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 150px;
  margin: 30px auto;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  border-radius: 37px;
  padding: 15px;
  line-height: 37px;
  cursor: pointer;
}
.signUpbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  width: 150px;
  margin: 30px auto;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  font-weight: 400;
  border-radius: 37px;
  padding: 15px;
  line-height: 37px;
  cursor: pointer;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  font-weight: bold;
  font-family: 'Source Sans Pro', sans-serif;
  color: white;
}
.container {
  max-width: 100%;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  background-image: url("../img/students.png");
  background-size: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position-y: 100px;
}
@media (max-width: 1070px) {
  .container {
    background-position-y: 300px;
    background-size: 100%;
  }
}
@media (max-width: 600px) {
  .container {
    background-position-y: 300px;
    background-size: 100%;
  }
}
h1 {
  font-size: 3.5rem;
  font-weight: 300;
}
h2 {
  font-size: 2rem;
  font-weight: 300;
}
h3 {
  font-size: 1.8rem;
  font-weight: 300;
}
p {
  font-size: 1.8rem;
  font-weight: 400c;
  line-height: 1.4;
}
li {
  font-size: 1.8rem;
  font-weight: 400c;
  line-height: 1.4;
  padding-top: 30px;
}
.header {
  width: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-left: 20%;
  margin-right: 20%;
  width: auto;
}
@media (max-width: 1070px) {
  .header {
    margin: 0 10px;
    padding: 10px 0 10px 0;
  }
}
@media (max-width: 600px) {
  .header {
    justify-content: center;
    flex-direction: column-reverse;
    margin: 10px 0;
    padding: 0 0 10px 0;
  }
}
.header .logo {
  cursor: pointer;
}
@media (max-width: 600px) {
  .header .logo {
    display: none;
  }
}
.header .logo h2 {
  text-align: center;
  font-size: 4rem;
  padding: 0;
  text-shadow: 2px 2px 4px black;
}
.header .logo p {
  text-align: center;
  padding: 0;
  text-shadow: 2px 2px 4px black;
}
.header .menu {
  display: none;
  font-size: 1.9rem;
  padding-right: 10px;
  color: black;
}
@media (max-width: 600px) {
  .header .menu {
    padding: 30px 0 0 0;
    display: block;
  }
}
.header a {
  font-size: 1.8rem;
  padding-right: 10px;
  color: white;
  text-shadow: 2px 2px 4px black;
}
.header .menuIcon {
  width: 60px;
  cursor: pointer;
}
@media (max-width: 1070px) {
  .header .menuIcon {
    width: 70px;
    padding-bottom: 5px;
  }
}
@media (max-width: 600px) {
  .header .menuIcon {
    display: none;
  }
}
.menu {
  display: block;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9bb7d4;
  background-size: 100%;
  padding: 30px 10px;
}
.home .top .arrow {
  height: 5%;
  width: 5%;
  display: flex;
  margin: 0 auto;
  padding-bottom: 20px;
}
@media (max-width: 600px) {
  .home .top .arrow {
    height: 15%;
    width: 15%;
    padding-bottom: 0px;
  }
}
.home .top .intro {
  height: 68vh;
  border-radius: 10px;
  padding: 30px 10px;
  margin-top: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
}
@media (max-width: 600px) {
  .home .top .intro {
    height: 445px;
  }
}
.home .top .intro h1 {
  display: none;
  padding: 0;
  text-align: center;
  text-shadow: 1px 1px 6px black;
}
@media (max-width: 600px) {
  .home .top .intro h1 {
    display: block;
  }
}
.home .top .intro p {
  display: none;
  text-align: center;
  text-shadow: 1px 1px 6px black;
}
@media (max-width: 600px) {
  .home .top .intro p {
    display: block;
  }
}
.home .top .intro .loginbtn {
  display: none;
}
@media (max-width: 600px) {
  .home .top .intro .loginbtn {
    display: block;
  }
}
.home .top .intro a {
  font-weight: bold;
  font-size: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding-top: 300px;
  text-shadow: 2px 2px 4px black;
}
@media (max-width: 600px) {
  .home .top .intro a {
    font-size: 3rem;
    padding-top: 140px;
  }
}
.home .main .tablet {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
@media (max-width: 1070px) {
  .home .main .tablet {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 600px) {
  .home .main .tablet {
    width: 100%;
    height: 100%;
  }
}
.home .main .kids {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
@media (max-width: 1070px) {
  .home .main .kids {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 600px) {
  .home .main .kids {
    width: 100%;
    height: 100%;
  }
}
.home .main .desk {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
@media (max-width: 1070px) {
  .home .main .desk {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 600px) {
  .home .main .desk {
    width: 100%;
    height: 100%;
  }
}
.home .main .signup {
  width: 50%;
  height: 50%;
  margin: 0 auto;
}
@media (max-width: 1070px) {
  .home .main .signup {
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 600px) {
  .home .main .signup {
    width: 100%;
    height: 100%;
  }
}
.home .main .light {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background: #9bb7d4;
  padding: 30px 40px;
}
.home .main .light ul {
  padding-top: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  color: black;
}
@media (max-width: 1070px) {
  .home .main .light {
    flex-direction: column-reverse;
  }
}
.home .main .light h2 {
  color: black;
  text-align: center;
  font-size: 6rem;
}
@media (max-width: 1070px) {
  .home .main .light h2 {
    font-size: 3.2rem;
  }
}
.home .main .light p {
  padding-top: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  color: black;
  text-align: center;
}
.home .main .dark {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  background: #11345a;
  padding: 30px 40px;
}
@media (max-width: 1070px) {
  .home .main .dark {
    flex-direction: column-reverse;
  }
}
.home .main .dark h2 {
  text-align: center;
  font-size: 6rem;
}
@media (max-width: 1070px) {
  .home .main .dark h2 {
    font-size: 3.2rem;
  }
}
.home .main .dark p {
  padding-top: 20px;
  max-width: 600px;
  width: 100%;
  margin: auto;
  text-align: center;
}
@media (max-width: 600px) {
  .team {
    background-image: none;
  }
}
.team .top .intro {
  background: #9bb7d4;
  border-radius: 10px;
  padding: 30px 10px;
  max-width: 800px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}
.team .top .intro h1 {
  color: black;
  padding-bottom: 20px;
}
.team .top .intro p {
  color: black;
}
.team .main .profileImg {
  padding: 10px;
  width: 50%;
  height: 50%;
  display: flex;
  flex-wrap: wrap;
  border-radius: 100%;
}
@media (max-width: 600px) {
  .team .main .profileImg {
    width: 60%;
    height: 60%;
    margin: 0 auto;
    padding: 0;
  }
}
.team .main .github {
  width: 70px;
  padding-right: 10px;
}
@media (max-width: 600px) {
  .team .main .github {
    width: 100px;
  }
}
.team .main .linkedin {
  width: 60px;
}
@media (max-width: 600px) {
  .team .main .linkedin {
    width: 90px;
    justify-content: left;
  }
}
.team .main .info {
  padding: 20px;
}
.team .main p {
  padding: 40px 30px;
}
.team .main .header h1 {
  margin: 0 auto;
}
.team .main .light {
  display: flex;
  justify-content: space-between;
  background: #9bb7d4;
  border-radius: 10px;
  padding: 30px 10px;
  max-width: 500px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}
.team .main .light .info {
  color: black;
}
@media (max-width: 600px) {
  .team .main .light {
    display: flex;
    flex-direction: column;
  }
}
.team .main .dark {
  display: flex;
  justify-content: space-between;
  background: #11345a;
  border-radius: 10px;
  padding: 30px 10px;
  max-width: 500px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}
@media (max-width: 600px) {
  .team .main .dark {
    display: flex;
    justify-content: center;
    flex-direction: column-reverse;
  }
}
.team .main .dark .icons {
  display: flex;
}
@media (max-width: 600px) {
  .team .main .dark .icons {
    margin: 0 25px;
    justify-content: space-between;
  }
}
