@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideToRight {
  from {
    right: 100%;
  }
  to {
    right: 0px;
  }
}
@keyframes slideLeftToRight {
  from {
    margin-left: 100%;
  }
  to {
    margin-left: 0%;
  }
}
@keyframes slideToLeft {
  from {
    left: 100px;
  }
  to {
    left: 0px;
  }
}
.colored_b {
  color: yellow;
}

html {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  color: rgb(255, 255, 255);
}

.nav {
  display: none;
  opacity: 0;
  height: 8%;
  width: 10%;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
.nav a {
  height: 100%;
  width: 50px;
  text-decoration: none;
  text-align: center;
  font-size: 100%;
  animation: slideToLeft 1s;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.main-content {
  padding-left: 10%;
  padding-right: 10%;
}

.button {
  background-color: #879cfc;
  border: none;
  color: rgb(0, 0, 0);
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

.button:hover {
  transform: scale(1.2);
}

.img object {
  border-radius: 20%;
}

.btn-svg {
  position: relative;
  display: inline-block;
}

.btn-svg:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.btn-svg:hover {
  transform: translateY(-5px);
}

.bg {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
}
.bg .bg-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  overflow: hidden;
}
.bg .bg-container .side-a {
  flex: 1;
}
.bg .bg-container .side-a h1 {
  font-size: 50px;
}
.bg .bg-container .side-a .intro-text {
  text-align: right;
  animation: fade 1s, slideToRight 1s;
  animation-fill-mode: forwards;
  position: relative;
  padding: 40px;
}
.bg .bg-container .side-a a {
  opacity: 0;
  text-decoration: none;
  animation: fade 1s, slideToRight 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  position: relative;
}
.bg .bg-container .side-a .web-info {
  opacity: 0;
  display: flex;
  position: absolute;
  bottom: 0px;
  animation: fade 1s, slideLeftToRight 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.8s;
}
.bg .bg-container .side-a .web-info img {
  height: 90px;
  width: 130px;
}
.bg .bg-container .side-a .web-info img:hover {
  animation: rotate 0.5s;
}
.bg .bg-container .side-a .web-info p {
  margin-top: 40px;
  font-size: small;
}
.bg .bg-container .side-b {
  flex: 1;
  display: flex;
}
.bg .bg-container .side-b div {
  text-align: left;
  animation: fade 1s, slideToLeft 1s;
  animation-fill-mode: forwards;
  position: relative;
}
.bg .bg-container .side-b .dp {
  width: 650px;
  height: 650px;
  background-image: url(.././resources/dp-remove-bg.png);
}
.bg .bg-container .side-b .dp:hover {
  background-image: url(.././resources/dp-remove-bg-gray.png);
  transform: scale(1.01, 1.01);
}
.bg .bg-container .side-b .soc-med {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  animation: fade 1s, slideToLeft 1s;
  animation-fill-mode: forwards;
  position: relative;
  animation-delay: 1s;
}

.flex-box {
  display: flex;
}
.flex-box .text {
  padding: 20px;
}
.flex-box .work-img {
  padding: 20px;
}

.work-container h1, .work-container h2, .work-container h3 {
  text-align: center;
}
.work-container .work-date, .work-container .work-date-diff {
  font-family: "Rubik", sans-serif;
}
.work-container .work-date {
  font-size: large;
}

.introduction .work-container .flex-box .text-img-box .img {
  padding: 10px;
  float: left;
}
.introduction .work-container .flex-box .text-img-box .img .myself-img {
  opacity: 0;
}
.introduction .work-container .flex-box .text-img-box .img img {
  width: 170px;
  height: 245px;
  position: relative;
}
.introduction .work-container .section-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.introduction .work-container .section-2 .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.introduction .work-container .section-2 .img-container button {
  height: 50px;
  background: none;
  border: none;
}
.introduction .work-container .section-2 .img-container button:hover {
  transform: scale(1.2);
}
.introduction .work-container .section-2 .img-container .img-carousel {
  background-color: rgba(67, 67, 67, 0.247);
  width: 800px;
  height: 500px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  font-family: "Moon Dance";
  font-size: 20px;
}
.introduction .work-container .section-2 .img-container .img-carousel .image-item {
  display: none;
  min-width: 100%;
  min-height: 100%;
}
.introduction .work-container .section-2 .video video {
  max-width: 100%;
  width: 800px;
  height: auto;
  display: block;
  margin: 0 auto; /* center horizontally */
}

.skills-container {
  background-color: rgba(35, 35, 35, 0.278);
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.skills-container object {
  height: 45px;
  width: 45px;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 8%;
}
.contact .contact-container {
  display: flex;
  flex-direction: column;
}
.contact .contact-container .contact-item {
  display: flex;
}
.contact .contact-container .contact-item h3 {
  padding-top: 5px;
  padding-left: 5px;
}
.contact .contact-container .contact-item a {
  text-decoration: none;
  color: white;
}
.contact .contact-container .contact-item a:hover {
  color: #707bf4;
}

@media only screen and (max-width: 1160px) {
  .nav {
    margin-right: 12px;
  }
  .bg .bg-container {
    flex-direction: column;
    top: 20%;
  }
  .bg .bg-container .side-a .web-info {
    display: none;
  }
  .bg .bg-container .side-b {
    justify-content: center;
    max-height: 20%;
  }
  .bg .bg-container .side-b .dp {
    display: none;
  }
  .bg .bg-container .side-b .soc-med {
    flex-direction: row;
    padding-top: 0;
    max-height: 40%;
  }
  .main-content .work-container .flex-box .work-img object {
    max-width: 120px;
    max-height: 120px;
  }
  .main-content .introduction .section-2 .img-container .img-carousel {
    max-width: 450px;
    max-height: 300px;
  }
  .skills-container {
    display: block;
    background-color: rgba(240, 240, 240, 0.732);
    padding: 10px;
  }
  .skills-container object {
    height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 820px) {
  .bg .bg-container .side-a .intro-text {
    padding-top: 0;
    padding-bottom: 0;
  }
  .nav {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 750px) {
  .main-content .introduction .section-2 .img-container {
    max-width: 10px;
  }
  .main-content .introduction .section-2 .img-container button object {
    height: 25px;
    max-width: 25px;
  }
  .main-content .introduction .section-2 .img-container .img-carousel {
    max-width: 300px;
    max-height: 180px;
    padding: 10px !important;
    font-size: 10px !important;
  }
  .main-content .work-container .flex-box .text-img-box .img {
    display: flex;
    justify-content: center;
    align-items: center;
    float: none;
  }
  .main-content .work-container .flex-box .text-img-box .img img {
    width: 200px;
    height: 315px;
    position: relative;
  }
  .main-content .work-container .flex-box .work-img {
    display: none;
  }
  .skills-container {
    display: block;
    background-color: rgba(255, 255, 255, 0.645);
    padding: 10px;
  }
  .skills-container object {
    height: 25px;
    width: 25px;
  }
}
.loading-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 650px;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 17px;
  font-family: monospace;
  line-height: 1.4;
  font-weight: bold;
  padding: 30px 2px 50px;
  background: linear-gradient(#000 0 0) 0 0/100% 100% content-box padding-box no-repeat;
  position: relative;
  overflow: hidden;
  animation: l10-0 2s infinite cubic-bezier(1, 175, 0.5, 175);
}

.loader::before {
  content: "Loading";
  display: inline-block;
  animation: l10-2 2s infinite;
}

.loader::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 28px;
  top: 110%;
  left: calc(50% - 16px);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 12px, #f92033 0 22px, rgba(0, 0, 0, 0) 0 26px, #fdc98d 0 32px, rgba(0, 0, 0, 0)) bottom 26px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 10px, #f92033 0 28px, #fdc98d 0 32px, rgba(0, 0, 0, 0) 0) bottom 24px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 10px, #643700 0 16px, #fdc98d 0 20px, #000 0 22px, #fdc98d 0 24px, #000 0 26px, #f92033 0 32px, rgba(0, 0, 0, 0) 0) bottom 22px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 8px, #643700 0 10px, #fdc98d 0 12px, #643700 0 14px, #fdc98d 0 20px, #000 0 22px, #fdc98d 0 28px, #f92033 0 32px, rgba(0, 0, 0, 0) 0) bottom 20px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 8px, #643700 0 10px, #fdc98d 0 12px, #643700 0 16px, #fdc98d 0 22px, #000 0 24px, #fdc98d 0 30px, #f92033 0 32px, rgba(0, 0, 0, 0) 0) bottom 18px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 8px, #643700 0 12px, #fdc98d 0 20px, #000 0 28px, #f92033 0 30px, rgba(0, 0, 0, 0) 0) bottom 16px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 12px, #fdc98d 0 26px, #f92033 0 30px, rgba(0, 0, 0, 0) 0) bottom 14px left 50%, linear-gradient(90deg, #fdc98d 6px, #f92033 0 14px, #222a87 0 16px, #f92033 0 22px, #222a87 0 24px, #f92033 0 28px, rgba(0, 0, 0, 0) 0 32px, #643700 0) bottom 12px left 50%, linear-gradient(90deg, #fdc98d 6px, #f92033 0 16px, #222a87 0 18px, #f92033 0 24px, #f92033 0 26px, rgba(0, 0, 0, 0) 0 30px, #643700 0) bottom 10px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 10px, #f92033 0 16px, #222a87 0 24px, #feee49 0 26px, #222a87 0 30px, #643700 0) bottom 8px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 12px, #222a87 0 18px, #feee49 0 20px, #222a87 0 30px, #643700 0) bottom 6px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 8px, #643700 0 12px, #222a87 0 30px, #643700 0) bottom 4px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 6px, #643700 0 14px, #222a87 0 26px, rgba(0, 0, 0, 0) 0) bottom 2px left 50%, linear-gradient(90deg, rgba(0, 0, 0, 0) 6px, #643700 0 10px, rgba(0, 0, 0, 0) 0) bottom 0px left 50%;
  background-size: 34px 2px;
  background-repeat: no-repeat;
  animation: inherit;
  animation-name: l10-1;
}

@keyframes l10-0 {
  0%, 30% {
    background-position: 0 0px;
  }
  50%, 100% {
    background-position: 0 -0.1px;
  }
}
@keyframes l10-1 {
  50%, 100% {
    top: 109.5%;
  }
}
@keyframes l10-2 {
  0%, 30% {
    transform: translateY(0);
  }
  80%, 100% {
    transform: translateY(-260%);
  }
}/*# sourceMappingURL=style.css.map */