
html, body {
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  padding: 0px;
  margin: 0px;
  color: #2f2f2f;
  animation: fadeInAnimation ease 2s;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bg_webgl {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0px;
  left: 0px;
  z-index: -9;
}

.veiwport_container {
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
  overflow-x: hidden;
}

.margins_container {
  width: 84%;
  max-width: 1700px;
  min-height: 100vh;
  margin: 0px auto;
  position: relative;
  border-left: 1px solid #eeeeee;
  border-right: 1px solid #d8e9a6;
}

.name_logo {
  margin: 40px 0px 0px;
  padding: 0px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 90px;
  font-weight: 900;
  position: absolute;
  z-index: 9;
  cursor: crosshair;
}
.name_logo_hyde {
  margin: 130px 0px 0px;
}

.internal_margins_padding {
  width: 84%;
  min-height: 100vh;
  margin: 0px auto;
  display: flex;
  background-image: linear-gradient(#eeeeee 33%, #eeeeee00 0%), linear-gradient(#eeeeee 33%, #eeeeee00 0%);
  background-position: left, right;
  background-size: 1px 13px;
  background-repeat: repeat-y;
}

.portfolio_container {
  height: fit-content;
  width: 85%;
  min-width: 900px;
  background-color: #faebd74f;
  backdrop-filter: blur(10px);
  border-top-left-radius: 25px;
  border-bottom: 2px solid #2f2f2f;
  position: relative;
  margin-top: 130px;
  margin-left: auto;
  padding: 60px 20px 40px;
  transition: 2300ms ease-in-out;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 200;
  text-align: right;
}

.portfolio_container h2 {
  margin: 0px;
  padding-right: 42px;
}

.portfolio_p_container {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: right;
}

.portfolio_p_desc {
  margin-top: 36px;
}

.project_title {
  font-size: 40px;
  font-weight: 900;
}

.portfolio_a {
  text-decoration: none;
  color: inherit;
  display: inline;
  position: relative;
}
.portfolio_a:after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(1);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #2f2f2f;
  transform-origin: bottom right;
}

.info_container_mobile {
  display: none;
  flex-direction: column;
  justify-content: right;
  margin: 60px -30px 0px 0px;
}

.color_change_container {
  height: auto;
  width: auto;
  position: absolute;
  bottom: 30px;
  left: 0px;
}

.color_cube {
  height: 40px;
  width: 5px;
  margin-top: 6px;
  cursor: pointer;
  transition: 400ms;
}
.color_cube:hover {
  width: 30px;
}
.brown {
  background-color: #faebd7;
}
.blue {
  background-color: #a6d3e9;
}
.green {
  background-color: #a9e9a6;
}
.lime {
  background-color: #d8e9a6;
}
.active_color_cube {
  width: 30px!important;
}

.info_container {
  height: auto;
  width: auto;
  position: absolute;
  bottom: 30px;
  right: 0px;
}

.info_p {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1;
  text-align: right;
  margin-bottom: 0px;
}

@supports (-webkit-text-stroke: 1px #2f2f2f) or (-webkit-text-fill-color: #ffffff00) {
  .name_logo:hover {
    -webkit-text-stroke: 1px #2f2f2f;
    -webkit-text-fill-color: #ffffff00;
  }
  .project_title:hover {
    -webkit-text-stroke: 1px #2f2f2f;
    -webkit-text-fill-color: #ffffff00;
  }
}

@media only screen and (max-width: 1300px) {
  .portfolio_container {
    min-width: 740px;
    margin-top: 170px;
  }
  .portfolio_container h2 {
    padding-right: 0px;
  }
  .portfolio_p_container {
    margin-right: -45px;
  }
  .portfolio_p_desc {
    margin-top: 28px;
  }
  .project_title {
    font-size: 30px;
  }
  .info_container_mobile {
    display: flex;
  }
  .info_container {
    display: none;
  }
}
@media only screen and (max-width: 1080px) {
  .portfolio_container {
    min-width: 620px;
    padding: 40px 20px 60px;
    margin-bottom: 100px;
  }
  .portfolio_p_container {
    flex-direction: column-reverse;
  }
  .portfolio_p_desc {
    margin: 0px 160px 0px 0px;
  }
  .portfolio_p_container p {
    margin: 30px 0px 5px;
  }
  .color_change_container {
    top: 270px;
  }
}
@media only screen and (max-width: 920px) {
  .portfolio_container {
    min-width: 400px;
    padding: 40px 20px 60px;
    margin-top: 200px;
  }
  .portfolio_p_desc {
    margin: 0px 60px 0px 0px;
  }
}
@media only screen and (max-width: 640px) {
  .portfolio_container {
    min-width: 320px;
  }
  .project_title {
    font-size: 24px;
  }
  .portfolio_a {
    text-decoration: underline;
  }
  .color_cube {
    width: 20px;
  }
}
@media only screen and (max-width: 530px) {
  .margins_container {
    width: 100%;
    border-left: 0px;
    border-right: 0px;
  }
  .name_logo {
    margin-left: 30px;
  }
  .name_logo_hyde {
    margin-left: 70px;
  }
  .internal_margins_padding {
    width: 100%;
    background-image: none;
  }
  .portfolio_container {
    width: 100%;
    min-width: 0px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 450px) {
  .name_logo {
    font-size: 70px;
  }
  .name_logo_hyde {
    margin-top: 110px;
  }
  .project_title {
    font-size: 19px;
  }
}
@media only screen and (max-width: 400px) {
  .project_title {
    font-size: 15px;
  }
}