body {
  background-color: whitesmoke;
  margin: 0;
}

.content {
  text-align: center;
  color: grey;
  h1 {
    padding-top: 1.5rem;
  }
}

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

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

h1 {
  text-align: center;
  font-weight: bold;
  font-family: "jost";
}

p {
  font-family: "jost";
}

.content {
  margin-top: 35vh;
}

.donateform {
  text-align: center;
}

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

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

.donateform {
  input {
    width: 20%;
  }
}

@media screen and (max-width: 500px) {
  .donateform {
    input {
      width: 50%;
    }
  }

  .content {
    width: 100%;
    margin-top: 25vh;
  }

  .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%;
  }
}