/*
Theme colors:
#345e7d
#2b4257
#6da7cc
#88a9c3
#e3ebf2
*/

body {
  background-image: url("../images/other/homepagebg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  margin: 0;
  width: 100%;
}

@font-face {
  font-family: "codeequityfont";
  src: url("../fonts/procrastinatingpixie.ttf");
}

@font-face {
  font-family: "jost";
  src: url("../fonts/Jost-VariableFont_wght.ttf");
}

button {
  background-color: #2b4257;
  border: none;
  color: white;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: "normaltext";
  margin: auto;
}

#learn-more-text {
  font-size: 2.6vh;
  font-family: "jost";
}

#learn-more {
  text-align: center;
  margin-bottom: auto;
  width: 25vh;
  height: 9vh;
  border-radius: 1.5vh;
  margin-bottom: 7em;
}

#bigtitle {
  margin-top: 2.25em;
  text-align: center;
  font-family: "codeequityfont";
  font-weight: bold;
  color: white;
  font-size: 9em;
  text-shadow: 7px 7px 2px black;
}

.tagline {
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 200%;
  text-shadow: 3px 3px 2px black;
}

p {
  font-family: "jost";
}

::selection {
  color: white;
  background: #345e7d;
}

#learn-more:hover {
  cursor: pointer;
}

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

@media screen and (max-width: 500px) {
  #bigtitle {
    margin-top: 3.5em;
    text-align: center;
    font-family: "codeequityfont";
    font-weight: bold;
    color: white;
    font-size: 4em;
    text-shadow: 7px 7px 2px black;
  }
  .tagline {
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 1.3em;
    text-shadow: 3px 3px 2px black;
  }
  .headbar {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    background-color: #2b4257;
    height: 7em;
    text-align: center;
  }
  .nav a {
    font-size: 0.75em;
    font-family: "jost";
    text-decoration: none;
    color: white;
    display: inline;
    text-align: center;
  }
  .footer {
    background: #2b4257;
    font-family: "jost";
    text-align: center;
    width: 100%;
    overflow-x: hidden;
  }
  .footer .row {
    width: 100%;
    margin: 1% 0%;
    padding: 0.6% 0%;
    color: white;
    font-size: 0.6em;
  }
  .footer .row a {
    text-decoration: none;
    color: white;
    transition: 0.5s;
  }
  .footer .row a:hover {
    color: #fff;
  }
  .footer .row ul {
    width: 100%;
  }
  .footer .row ul li {
    display: inline-block;
    margin: 0px 30px;
  }
  .footer .row a i {
    font-size: 2em;
    margin: 0% 1%;
  }
  .footer .row ul li {
    display: block;
    margin: 10px 0px;
    text-align: left;
  }
  .footer .row a i {
    margin: 0% 3%;
  }
}