/*colors
    off-white: #f0eeeb
    dark-blue: #011212
    dark-blue-2: #014c69
    dark-blue: #006c70
    light-blue: #05becf
    teal:#26f6b4;
*/

* {
  margin: 0;
  padding: 0;
  font-family: "Courier New", Courier, monospace;
  font-size: 100%;
  box-sizing: border-box;
}
body {
  width: 100%;

  background-color: #f0eeeb;
}

h1 {
  font-size: 3vw;
  letter-spacing: 0.1em;
}

.front-end {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  font-size: 3vw;
  transform: scaleY(1.5);
  z-index: 0;
}

.bracket {
  font-family: "Courier New", Courier, monospace;
  color: #f0eeeb;
  font-size: 10vw;
}
header {
  width: 100%;
  color: #014c69;
  height: 5%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0px;
  padding: 2.5em 0;
  background-color: #f0eeeb;
  align-items: center;
  border-bottom: 1px solid #014c69;
  box-shadow: 0 3px 6px#014c69;
  z-index: 5;
}

logo {
  font-size: 5vw;
  margin-left: 0.5em;
}

#title {
  font-size: 5vw;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

/*HAMBURGER TUTORIAL*/

.menu a {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0.25em 0.75em;
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: #05becf;
  position: absolute;
  height: 5px;
  width: 40px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: #f0eeeb;
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}
/* END HAMBURGER TUTORIAL*/

nav ul {
  display: flex;
}
.right {
  margin-right: 0.75em;
}

ul li {
  list-style-type: none;
  margin-left: 2.2em;
}
.nav-button {
  background: #05becf;
  padding: 0.5em 0.75em;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
}
.nav-button:link,
.nav-button:visited {
  color: #014c69;
}
.nav-button:hover {
  color: #fff;
  background-color: #014c69;
}

main {
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero {
  width: 100%;
  height: 100vh;
  color: #f0eeeb;
  background-color: #05becf;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5em 0;
  margin-top: 4vh;
}

.intro {
  width: 100%;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 0 1em;
}

.info {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: -4vh;
}

.prof-pic {
  width: 30vw;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10vw;
}

.prof-pic img {
  width: 100%;
  background-color: white;
  border: 1em solid #014c69;

  border-radius: 5px;
}

.projects {
  width: 100%;
  background-color: #014c69;

  border: 1px solid black;
}

/* CONTACT PAGE */
.page-title {
  color: #f0eeeb;
  font-size: 5vw;
  letter-spacing: 0.1em;
  margin-bottom: 2em;
}
.contacts {
  width: 100%;
  height: 100vh;
  background-color: #05becf;
  padding: 5em 0;
  margin-top: 4vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-buttons {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.contact-buttons img {
  width: 1.5em;
  margin-top: 5px;
  margin-right: 0.75em;
}

.contact {
  color: #f0eeeb;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  padding: 0.5em 0.75em;
  /*padding: 1em 1em .2em 1em;*/
  background-color: #014c69;
  border-radius: 5px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.contact:link,
.contact:visited {
  color: #f0eeeb;
}

.contact:hover {
  color: #014c69;
  background-color: #f0eeeb;
}
/* HAMBURGER MENU */

@media (max-width: 1200px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    width: 100%;
    position: absolute;
    top: 0;
    margin-top: 70px;
    left: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border: 1px solid #f0eeeb;
    height: 3em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.25em 0.75em;
    width: 100%;
    color: #05becf;
    background-color: #f0eeeb;
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }

  .hero {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .intro {
    width: 60%;
  }
  .prof-pic {
    width: 30vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
}
