
/*
 * base
 * information
 */

 :root {
  --colorbase: #333333;
  --colorbasetext: #aaaaaa;
  --color1: #88cccc;
  --colorlink: #787878;
}

* {
  padding: 0px;
  margin: 0px;
  font-family: "Helvetica";
  font-size: 17px;
}

body {
  margin-top: 100px;
  background-color: var(--color1);
}

a:visited {
  text-decoration: none;
}

/*
 * nav
 * set for pure css behavior
 */

nav {
  position: fixed;
  top: 0;
  
  /* display: flex; */
  height: 100px;
  width: 100vw;
  
  background-color: var(--colorbase);
  color: var(--colorbasetext);
  z-index: 10000;
}

.navlink {
  color: var(--color1);
  margin: 0vw 1vw;
  padding: 0vw 3vw;
  height: 100px;
  float: left;
  line-height: 100px;
  vertical-align: center;
}

.navlink:hover {
  background-color: var(--color1);
  color: black;
  text-decoration: none;
}

.navlinkicon {
  font-size: 24px;
  text-align: center;
}

@media (max-width: 800px) {
  .navicon {
    padding: 38px 0px;
    font-size: 24px;
  }

  .navlink {
    padding: 0vw 2vw;
  }

  .navlinkicon {
    font-size: 12px;
  }
}

/*
 * contact us
 * external
 */

.profile {
  color: var(--colorlink);
  margin: 0px 4vw;
  width: 100px;
  height: 100px;
  text-align: center;
  float: right;
  transition: .3s ease;
  -webkit-transition: .3s ease;
  border-radius: 50%;
}

.profile:hover {
  background-color: var(--colorbase);
  width: 100px;
  height: 100px;
}

.profileicon {
  padding: 25px 25px;
  font-size: 50px;
}

.profileicon:hover {
  color: var(--color1);
}

/*
 * subnav
 */

.subnav {
  width: 100vw;
  height: 3vh;
  background-color: transparent;
  color: black;
  font-size: 15px;
  line-height: 3vh;
  vertical-align: center;
  text-align: center;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/*
 * sections
 */

section {
  margin: 20vh 0px;
  height: calc(100vh-250px);
  width: 100vw;
}

/*
 * intro
 */

#intro-section {
  background-color: var(--color1);
  display: flex;
  justify-content: center;
  align-items: center;
}


span {
  font-size: 150px;
  font-family: 'Courier';
  font-weight: 250;
}

@media (max-width: 800px) {
  span {
    font-size: 48px;
    font-family: 'Courier';
    font-weight: 250;
  }
}

/*
 * footer
 */
footer {
  position: fixed;
  bottom: 0;

  width: 100vw;

  background-color: var(--colorbase);
  color: var(--colorbasetext);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

