@font-face {
  font-family: "iosevka";
  src: url("/assets/fonts/iosevka-regular.woff2");
}
@font-face {
  font-family: "roboto";
  src: url("/assets/fonts/RobotoSlab-Bold.ttf");
}
@font-face {
  font-family: "cormorant";
  src: url("/assets/fonts/Cormorant-Regular.ttf");
}
html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

body {
  background-color: #2e3440;
  color: #eceff4;
  font-family: "iosevka";
  height: 100vh;
  padding-top: 1vh;
}

main {
  display: flex;
  height: 89vh;
}

button {
  background-color: #2e3440;
  color: #eceff4;
  font-family: "iosevka";
  cursor: pointer;
  border: none;
}

a {
  color: #88c0d0;
}

a:visited {
  color: #b48ead;
}

s {
  color: #2e3440;
}

#view {
  width: 80vw;
  height: 100%;
}

#side-nav {
  width: 20vw;
}

#drawer-button {
  position: absolute;
  left: -45px;
  top: 34vh;
  padding-right: 5px;
  height: 20vh;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3b4252;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  transition: all 0.1s ease-in;
}
#drawer-button * {
  transition: all 0.1s ease-in;
}

#drawer-button.closed {
  border-radius: 0 6px 6px 0;
  left: 0;
}
#drawer-button.closed * {
  transform: rotate(180deg);
}

#drawer-button:hover {
  background-color: #4c566a;
}

#name {
  height: 5vh;
  display: flex;
  align-items: center;
  justify-content: left;
  padding-left: 2vw;
}

#explorer {
  margin-top: 2vh;
}
#explorer button {
  width: 100%;
  padding-left: 2vw;
  text-align: left;
}
#explorer button:hover {
  background-color: #3b4252;
}
#explorer button.active {
  background-color: #5e81ac;
}

.folder-contents {
  transition: max-height 0.2s ease-in;
}
.folder-contents * {
  padding-left: 1em;
}

#tabs {
  height: 5vh;
  overflow-x: auto;
  display: flex;
  width: 95.5%;
  margin: 0px;
}
#tabs span {
  margin-left: 10px;
}
#tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-left: 1em;
  padding-right: 1em;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
  z-index: 1;
}
#tabs button:hover {
  background-color: #3b4252;
}
#tabs button.active {
  background-color: #434c5e;
}

.close-button {
  color: #d8dee9;
  margin-left: 4em;
}

.close-button:hover {
  color: #bf616a;
}

#editor {
  padding: 2.5vh;
  z-index: 10;
  padding-bottom: 0vh;
  height: 84vh;
  width: 92%;
  margin-left: 0;
  margin-top: -0.7vh;
  border-radius: 6px;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.7);
  background-color: #434c5e;
  position: relative;
  transition: all 0.3s ease-in;
}

#editor-content {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}

#editor.wide {
  margin-left: -20vw;
  width: 86vw;
  padding: 0 8vw 0 8vw;
  border-radius: 0;
  box-shadow: none;
}
#editor.wide #resume {
  margin-top: 19.7px;
  transition: all 0.3s ease-in;
}

#editor.inactive {
  background-color: #2e3440;
  box-shadow: none;
}
#editor.inactive #editor-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
}
#editor.inactive #drawer-button {
  display: none;
}

#footer {
  height: 6vh;
  margin-top: 3vh;
  font-size: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer * {
  margin-left: 2vw;
  margin-right: 2vw;
}
#footer a.contact-button-container {
  text-decoration: none;
  color: #d8dee9;
  width: 24px;
  text-align: left;
}
#footer a.contact-button-container i {
  margin-left: 0px;
}
#footer a.contact-button-container i:hover {
  color: #88c0d0;
  transform: scale(1.2);
}

#attribution {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
#attribution a {
  color: #eceff4;
  text-decoration: none;
  margin-left: 7px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #side-nav {
    width: 30vw;
  }

  #view {
    width: 70vw;
  }

  #editor {
    width: 80%;
  }

  #editor.wide {
    margin-left: -30vw;
    padding: 0 10vw 0 14vw;
    width: 76vw;
  }

  #tabs button {
    width: 100px;
    padding: 0;
  }
  #tabs button .close-button {
    margin-left: 30px;
    font-size: 16px;
  }
  #tabs button span {
    display: none;
  }

  #explorer button {
    height: 50px;
  }
}
#about-page {
  display: flex;
  padding-top: 5vh;
}
#about-page div {
  padding-right: 40px;
}
#about-page p {
  margin-top: 0px;
}

.image-with-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 204px;
}
.image-with-label img {
  border-radius: 4%;
  border: solid #d8dee9 2px;
}
.image-with-label * {
  font-size: 12px;
  width: 200px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #about-page {
    flex-wrap: wrap;
  }
  #about-page div {
    padding-right: 0;
  }
}
object#resume {
  border-radius: 6px;
}

.work-card {
  background-color: #3b4252;
  padding: 20px;
  border-radius: 6px;
  position: relative;
  margin: 8px 16px 8px 16px;
  transition: all 0.1s;
}
.work-card span.card-header {
  width: 100%;
  text-align: center;
}
.work-card div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.work-card p {
  margin-left: 20px;
  margin-top: 0px;
}
.work-card img {
  border-radius: 6px;
}
.work-card span.card-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.work-card span.card-footer a {
  text-decoration: none;
  padding: 5px 10px 5px 10px;
  color: #eceff4;
  border-radius: 6px;
  margin-left: 20px;
  transition: all 0.1s ease-out;
}
.work-card span.card-footer a:hover {
  transform: scale(1.1);
}
.work-card span.card-footer a.source-button {
  background-color: #a3be8c;
}
.work-card span.card-footer a.view-button {
  background-color: #8fbcbb;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .work-card img {
    width: 100%;
  }
  .work-card div {
    flex-wrap: wrap;
  }
  .work-card p {
    margin-top: 10px;
    margin-left: 0;
  }
  .work-card span.card-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work-card span.card-footer a {
    margin: 0px;
    margin-bottom: 20px;
  }
}

/*# sourceMappingURL=style.css.map */
