/*
$text-color-one: #000; // black
$text-color-three: #FFF; // white
$text-hightlight-color: #F01D7F; // hot pink
$background-color-one: #FFF; // white
$link-color-one: #F01D7F; // hot pink
$banner-color: #272727;
$banner-text: #F01D7F; // hot pink
$project-default-color: rgba(255, 255, 255, 0.4);
$project-focus-color: rgba(#F01D7F, 0.6);
*/
* {
  box-sizing: inherit;
}
*:before {
  box-sizing: inherit;
}
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0 auto;
}

body {
  min-height: 100vh;
  width: 100vw;
  background-color: #000;
  color: #FFF;
  margin: 0 auto;
  font-size: 20px;
  font-family: "Anonymous Pro", monospace;
  position: relative;
  text-align: center;
  top: 0;
  left: 0;
  right: 0;
}
body a {
  text-decoration: none;
  color: #00E33A;
}
body h1 {
  margin: 0px;
}
body h2 {
  margin: 20px 0;
}
body h3 {
  margin: 20px 0;
}
body p {
  margin: 20px 0;
}

#topNav {
  background: #000;
  padding: 15px;
  position: fixed;
  width: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
}
#topNav ul {
  width: 100%;
  height: 100%;
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 4vw;
  list-style: none;
  justify-content: flex-end;
  padding: 0 2vw;
}
#topNav ul li {
  display: flex;
  align-items: center;
}
#topNav ul .homeButton {
  flex-grow: 1;
  text-align: left;
}
#topNav a {
  color: #00E33A;
}

.bar {
  bottom: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.bar a {
  transform: rotate(90deg);
  font-size: 500%;
  transition: font-size 0.5s;
}
.bar a:hover {
  font-size: 600%;
}
@media (max-width: 480px) {
  .bar {
    display: none;
  }
}

.section {
  position: relative;
  justify-content: center;
  padding: 54px 10vw;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column nowrap;
  min-height: 100vh;
}

.section-title {
  top: 15px;
  position: absolute;
  font-size: 500%;
}

.sectionContent {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 80vw;
  height: 100%;
  max-width: 1200px;
}

.links-important {
  display: flex;
  justify-content: center;
  align-content: center;
  list-style: none;
  gap: 4vw;
  padding: 0;
}

#home {
  text-align: left;
  max-height: 90vh;
}
#home .big-wrapper {
  justify-content: center;
}
#home a {
  color: #00E33A;
}
#home h1 {
  font-size: min(15vw, 600px);
}
#home li {
  text-align: left;
}

#portfolio .projects {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 50px;
  margin: 20px 0;
}
#portfolio .projects .project-wrapper .project {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFF;
}
#portfolio .projects .project-wrapper .project-image-wrapper {
  height: 100px;
  width: 100px;
  padding: 5px;
  background-color: white;
  border-radius: 10px;
  transition: outline 0.25s, height 0.25s, width 0.25s;
}
#portfolio .projects .project-wrapper .project-image {
  max-height: 100%;
}
#portfolio .projects .project-wrapper .project-description {
  width: 100px;
}
#portfolio .projects .project-wrapper .project-description h3 {
  font-weight: normal;
  font-size: 20px;
  transition: font-size 0.25s, color 0.1s;
}
#portfolio .projects .project-wrapper .project:hover .project-image-wrapper {
  outline: 5px solid #00E33A;
  height: 105px;
  width: 105px;
}
#portfolio .projects .project-wrapper .project:hover h3 {
  color: #00E33A;
  font-size: 24px;
}

#about {
  padding-bottom: 109px;
}

footer {
  padding: 15px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
footer ul {
  margin: 0;
}
footer a {
  color: #00E33A;
}

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