/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/styles/index.scss ***!
  \*******************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Carter+One&family=Cinzel+Decorative&family=Cinzel:wght@600&family=Josefin+Slab&family=Khand&family=Michroma&family=Nova+Round&family=Quicksand:wght@400;500&family=Righteous&family=Roboto+Condensed&family=Rokkitt&family=Saira+Semi+Condensed&family=Stick+No+Bills&family=Syncopate&display=swap);
/*!***********************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./client/styles/index.scss (1) ***!
  \***********************************************************************************************************************/
.scroller-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 150px;
  padding: 0px;
  margin: 25px 5px;
  animation: fadeIn 2s, moveInLeft 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
.scroller-text {
  text-align: center;
  font-size: 24px;
  font-family: "Nova Round", cursive;
  color: white;
  transition-duration: 550ms;
  transition-property: color;
}

.scroller-text:hover {
  color: #EB7E3F;
}

.scroller-item-1 {
  padding: 1px 70px;
  margin: 5px;
  border-radius: 5px;
  background-color: #2d9cbd;
  background-size: cover;
  background-repeat: no-repeat;
  transition-duration: 750ms;
  transition-property: background-color;
}

.scroller-item-5 {
  padding: 1px 70px;
  border-radius: 5px;
  background-color: #2d9cbd;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 5px;
  transition-duration: 550ms;
  transition-property: background-color;
}

.snap {
  scroll-snap-type: inline mandatory;
  scroll-padding-inline: 10px;
}

.snap > * {
  scroll-snap-align: start;
}

.scroller-item-1:hover {
  background-color: #00AE95;
}

.scroller-item-2:hover {
  background-color: #00AE95;
}

.scroller-item-5:hover {
  background-color: #00AE95;
}

@media screen and (max-width: 800px) {
  .scroller-item-1 {
    padding: 50px 40px;
  }
  .scroller-item-5 {
    padding: 50px 60px;
  }
}
@media screen and (max-width: 400px) {
  .scroller-container {
    display: none;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-left: 70px;
  margin-bottom: 0px;
  animation: fadeIn 2s, moveInLeft 1s;
}
.header h1 {
  font-size: 60px;
  transition-duration: 550ms;
  transition-property: color;
  font-family: "Nova Round", cursive;
}
.header h1:hover {
  color: #00C6AB;
}

.header-title {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0px 90px;
  margin-right: 450px;
  animation: fadeIn 2s, moveInLeft 1s;
}
.intro-text h2 {
  font-size: 26px;
  font-family: "Nova Round", cursive;
}

.skills-title {
  font-family: "Nova Round", cursive;
}

.artskills-margin {
  margin-bottom: 40px;
}

.icon {
  padding: 15px;
  background-color: #37819F;
  border-radius: 50%;
  margin-right: 180px;
  font-size: 60px;
  font-family: "Nova Round", cursive;
  box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  transition-duration: 550ms;
  transition-property: box-shadow;
  animation: moveShadow 2s infinite ease-in-out;
}

.grow-icon {
  transition: all 0.3s ease-in-out;
}

.grow-icon:hover {
  transform: scale(1.2);
}

.intro-skillsets {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.progress-line {
  position: relative;
  height: 5px;
  width: 100%;
  background: #f0f0f0;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: skillbar 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes skillbar {
  100% {
    transform: scaleX(1);
  }
}
.progress-line span {
  height: 100%;
  width: 90%;
  background: #00C6AB;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: skillbar 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.progress-line.html span {
  width: 90%;
}

.progress-line.css span {
  width: 80%;
}

.progress-line.js span {
  width: 45%;
}

.progress-line.react span {
  width: 60%;
}

.progress-line.sass span {
  width: 70%;
}

.progress-line.git span {
  width: 75%;
}

.progress-line.node span {
  width: 45%;
}

.progress-line.mod span {
  width: 85%;
}

.progress-line.ani span {
  width: 70%;
}

.progress-line.tex span {
  width: 55%;
}

.progress-line.video span {
  width: 65%;
}

.progress-line.draw span {
  width: 45%;
}

.progress-line.paint span {
  width: 55%;
}

.progress-line span::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  right: 0;
  top: -10px;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-color: #EB9B6C;
  opacity: 0;
  animation: text 1s linear forwards;
}

.progress-line span::after {
  position: absolute;
  right: 0;
  top: -22px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: #EB9B6C;
  padding: 1px 8px;
  border-radius: 3px;
  opacity: 0;
  animation: text 1s linear forwards;
}

@keyframes text {
  100% {
    opacity: 1;
  }
}
.progress-line.html span::after {
  content: "90%";
}

.progress-line.css span::after {
  content: "80%";
}

.progress-line.js span::after {
  content: "45%";
}

.progress-line.react span::after {
  content: "60%";
}

.progress-line.sass span::after {
  content: "70%";
}

.progress-line.git span::after {
  content: "75%";
}

.progress-line.node span::after {
  content: "45%";
}

.progress-line.mod span::after {
  content: "85%";
}

.progress-line.ani span::after {
  content: "70%";
}

.progress-line.tex span::after {
  content: "55%";
}

.progress-line.video span::after {
  content: "65%";
}

.progress-line.draw span::after {
  content: "45%";
}

.progress-line.paint span::after {
  content: "55%";
}

.contact-links {
  display: flex;
  list-style-type: none;
  gap: 40px;
  flex-direction: row;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-single-links {
  transition-duration: 550ms;
  transition-property: color;
  font-size: 18px;
  font-family: "Nova Round", cursive;
  background-color: #2d9cbd;
  padding: 15px;
  border-radius: 5%;
}

.contact-single-links:hover {
  color: #EB9B6C;
  background-color: #00AE95;
}

.ideas-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}

.grow-link {
  transition: all 0.3s ease-in-out;
}

.grow-link:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveShadow {
  0% {
    box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  }
  25% {
    box-shadow: -21px 15px 0px 0px #00C6AB, -21px -25px 0px 0px #EB9B6C, 18px -25px 0px 0px #00C6AB, 18px 15px 0px 0px #EB9B6C;
  }
  50% {
    box-shadow: -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C, 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C;
  }
  75% {
    box-shadow: 18px -25px 0px 0px #00C6AB, 18px 15px 0px 0px #EB9B6C, -21px 15px 0px 0px #00C6AB, -21px -25px 0px 0px #EB9B6C;
  }
  100% {
    box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  }
}
@media screen and (max-width: 800px) {
  .icon {
    margin-right: 100px;
  }
  .header {
    margin-left: 40px;
  }
  .header h1 {
    font-size: 60px;
  }
  .intro-text {
    margin: 0px 40px;
    font-size: 14px;
  }
  .intro-text h2 {
    font-size: 20px;
  }
  .intro-skillsets {
    gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .icon {
    display: none;
  }
  .header {
    margin-left: 40px;
  }
  .header h1 {
    font-size: 50px;
  }
  .intro-text {
    margin: 0px 40px;
    font-size: 13px;
  }
  .intro-text h2 {
    font-size: 16px;
  }
  .intro-skillsets {
    flex-direction: column;
    gap: 20px;
  }
}
::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgb(91, 92, 96);
  border-radius: 50px;
  margin-block: -0.5em;
}

::-webkit-scrollbar-thumb {
  background: rgb(195, 194, 194);
  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background: #EB9B6C;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 20px 90px;
  animation: topToBottom 1s;
  margin-top: 25px;
  vertical-align: top;
}

.navbar-menu {
  display: flex;
  justify-content: flex-start;
  gap: 25px;
  font-size: 24px;
  align-items: center;
}
.navbar-menu a {
  text-decoration: none;
  font-family: "Nova Round", cursive;
  color: white;
  transition-duration: 550ms;
  transition-property: color;
  padding: 15px;
  background-color: #2d9cbd;
  border-radius: 8%;
}
.navbar-menu a:hover {
  color: #EB7E3F;
  background-color: #00AE95;
}

@keyframes topToBottom {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}
.grow-menu {
  transition: all 0.3s ease-in-out;
}

.grow-menu:hover {
  transform: scale(1.1);
}

.navbar-icons {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.icons {
  width: 30px;
  padding: 15px;
  background-color: #2d9cbd;
  border-radius: 8%;
}

.icons:hover {
  background-color: #00AE95;
}

@media screen and (max-width: 1800px) {
  .navbar-icons {
    margin-left: 30px;
  }
}
@media screen and (max-width: 800px) {
  .navbar-menu {
    font-size: 20px;
  }
  .navbar-icons {
    margin-left: 30px;
  }
}
@media screen and (max-width: 400px) {
  .navbar-menu {
    justify-content: center;
    align-items: center;
    font-size: 12px;
  }
  .navbar {
    padding: 20px 60px;
  }
  .navbar-icons {
    display: none;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-left: 70px;
  margin-bottom: 0px;
  animation: fadeIn 2s, moveInLeft 1s;
}
.header h1 {
  font-size: 60px;
  transition-duration: 550ms;
  transition-property: color;
  font-family: "Nova Round", cursive;
}
.header h1:hover {
  color: #00C6AB;
}

.header-title {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.intro-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0px 90px;
  margin-right: 450px;
  animation: fadeIn 2s, moveInLeft 1s;
}
.intro-text h2 {
  font-size: 26px;
  font-family: "Nova Round", cursive;
}

.skills-title {
  font-family: "Nova Round", cursive;
}

.artskills-margin {
  margin-bottom: 40px;
}

.icon {
  padding: 15px;
  background-color: #37819F;
  border-radius: 50%;
  margin-right: 180px;
  font-size: 60px;
  font-family: "Nova Round", cursive;
  box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  transition-duration: 550ms;
  transition-property: box-shadow;
  animation: moveShadow 2s infinite ease-in-out;
}

.grow-icon {
  transition: all 0.3s ease-in-out;
}

.grow-icon:hover {
  transform: scale(1.2);
}

.intro-skillsets {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.progress-line {
  position: relative;
  height: 5px;
  width: 100%;
  background: #f0f0f0;
  box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: skillbar 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

@keyframes skillbar {
  100% {
    transform: scaleX(1);
  }
}
.progress-line span {
  height: 100%;
  width: 90%;
  background: #00C6AB;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: skillbar 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.progress-line.html span {
  width: 90%;
}

.progress-line.css span {
  width: 80%;
}

.progress-line.js span {
  width: 45%;
}

.progress-line.react span {
  width: 60%;
}

.progress-line.sass span {
  width: 70%;
}

.progress-line.git span {
  width: 75%;
}

.progress-line.node span {
  width: 45%;
}

.progress-line.mod span {
  width: 85%;
}

.progress-line.ani span {
  width: 70%;
}

.progress-line.tex span {
  width: 55%;
}

.progress-line.video span {
  width: 65%;
}

.progress-line.draw span {
  width: 45%;
}

.progress-line.paint span {
  width: 55%;
}

.progress-line span::before {
  position: absolute;
  content: "";
  height: 0;
  width: 0;
  right: 0;
  top: -10px;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-color: #EB9B6C;
  opacity: 0;
  animation: text 1s linear forwards;
}

.progress-line span::after {
  position: absolute;
  right: 0;
  top: -22px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  background: #EB9B6C;
  padding: 1px 8px;
  border-radius: 3px;
  opacity: 0;
  animation: text 1s linear forwards;
}

@keyframes text {
  100% {
    opacity: 1;
  }
}
.progress-line.html span::after {
  content: "90%";
}

.progress-line.css span::after {
  content: "80%";
}

.progress-line.js span::after {
  content: "45%";
}

.progress-line.react span::after {
  content: "60%";
}

.progress-line.sass span::after {
  content: "70%";
}

.progress-line.git span::after {
  content: "75%";
}

.progress-line.node span::after {
  content: "45%";
}

.progress-line.mod span::after {
  content: "85%";
}

.progress-line.ani span::after {
  content: "70%";
}

.progress-line.tex span::after {
  content: "55%";
}

.progress-line.video span::after {
  content: "65%";
}

.progress-line.draw span::after {
  content: "45%";
}

.progress-line.paint span::after {
  content: "55%";
}

.contact-links {
  display: flex;
  list-style-type: none;
  gap: 40px;
  flex-direction: row;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contact-single-links {
  transition-duration: 550ms;
  transition-property: color;
  font-size: 18px;
  font-family: "Nova Round", cursive;
  background-color: #2d9cbd;
  padding: 15px;
  border-radius: 5%;
}

.contact-single-links:hover {
  color: #EB9B6C;
  background-color: #00AE95;
}

.ideas-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
}

.grow-link {
  transition: all 0.3s ease-in-out;
}

.grow-link:hover {
  transform: scale(1.1);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes moveShadow {
  0% {
    box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  }
  25% {
    box-shadow: -21px 15px 0px 0px #00C6AB, -21px -25px 0px 0px #EB9B6C, 18px -25px 0px 0px #00C6AB, 18px 15px 0px 0px #EB9B6C;
  }
  50% {
    box-shadow: -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C, 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C;
  }
  75% {
    box-shadow: 18px -25px 0px 0px #00C6AB, 18px 15px 0px 0px #EB9B6C, -21px 15px 0px 0px #00C6AB, -21px -25px 0px 0px #EB9B6C;
  }
  100% {
    box-shadow: 18px 15px 0px 0px #00C6AB, -21px 15px 0px 0px #EB9B6C, -21px -25px 0px 0px #00C6AB, 18px -25px 0px 0px #EB9B6C;
  }
}
@media screen and (max-width: 800px) {
  .icon {
    margin-right: 100px;
  }
  .header {
    margin-left: 40px;
  }
  .header h1 {
    font-size: 60px;
  }
  .intro-text {
    margin: 0px 40px;
    font-size: 14px;
  }
  .intro-text h2 {
    font-size: 20px;
  }
  .intro-skillsets {
    gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .icon {
    display: none;
  }
  .header {
    margin-left: 40px;
  }
  .header h1 {
    font-size: 50px;
  }
  .intro-text {
    margin: 0px 40px;
    font-size: 13px;
  }
  .intro-text h2 {
    font-size: 16px;
  }
  .intro-skillsets {
    flex-direction: column;
    gap: 20px;
  }
}
.about-title {
  margin-left: 85px;
  margin-top: 65px;
  margin-right: 1500px;
  font-size: 36px;
  font-family: "Nova Round", cursive;
  transition-duration: 550ms;
  transition-property: color;
}

.about-title:hover {
  color: #00C6AB;
}

.contact-title {
  margin-left: 0px;
  margin-right: 5px;
  width: 150px;
  font-size: 36px;
  font-family: "Nova Round", cursive;
  transition-duration: 550ms;
  transition-property: color;
}

.contact-title:hover {
  color: #00C6AB;
}

.about-content {
  display: flex;
  flex-direction: row;
  margin-left: 50px;
}

.about-standard-title {
  margin-left: 40px;
  margin-right: 40px;
}
.about-standard-title h3 {
  font-family: "Nova Round", cursive;
}

.about-profile-image {
  margin: 45px;
  margin-right: 150px;
  width: 40%;
}
.about-profile-image img {
  border-radius: 30px;
  width: 400px;
}

.right-animation {
  animation: fadeIn 2s, moveInRight 1s;
}

@keyframes moveInRight {
  0% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1300px) {
  .about-standard-title {
    margin-right: 60px;
  }
}
@media screen and (max-width: 800px) {
  .about-title {
    margin-left: 60px;
    font-size: 36px;
  }
  .about-standard-title {
    font-size: 20px;
    margin-right: 20px;
  }
  .about-standard-text {
    margin-left: 30px;
    margin-right: 30px;
    font-size: 14px;
  }
  .about-profile-image {
    display: none;
  }
}
@media screen and (max-width: 400px) {
  .about-title {
    margin-left: 60px;
    margin-right: 10px;
    font-size: 24px;
  }
  .about-standard-title {
    font-size: 16px;
    margin-right: 20px;
  }
  .about-standard-text {
    margin-left: 10px;
    margin-right: 10px;
    font-size: 13px;
  }
  .about-profile-image {
    display: none;
  }
}
.portfolio-content {
  margin: 15px;
  margin-left: 50px;
}

.portfolio-title {
  margin-top: 65px;
  margin-left: 40px;
  font-size: 36px;
  margin-right: 1500px;
  font-family: "Nova Round", cursive;
}

.portfolio-title-color {
  transition-duration: 550ms;
  transition-property: color;
}

.portfolio-title-color:hover {
  color: #00C6AB;
}

.portfolio-standard-header {
  margin-left: 40px;
  font-family: "Nova Round", cursive;
}

.portfolio-standard-text {
  margin-left: 40px;
  margin-right: 420px;
}

.web-project-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  margin-left: 40px;
  flex-wrap: wrap;
}

.web-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2d9cbd;
  border-radius: 5px;
  width: 200px;
  height: 250px;
  padding: 10px 15px;
  padding-bottom: 70px;
  margin-bottom: 20px;
}
.web-projects img {
  width: 200px;
  border-radius: 5px;
}

.web-projects:hover {
  background-color: #00AE95;
}

.art-project-container {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
  margin-left: 40px;
  flex-wrap: wrap;
}

.art-projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #2d9cbd;
  border-radius: 5px;
  width: 200px;
  height: 250px;
  padding: 10px 15px;
}
.art-projects img {
  width: 200px;
  border-radius: 5px;
}

.art-projects:hover {
  background-color: #00AE95;
}

.video-flex-container {
  display: flex;
  justify-content: center;
  align-content: center;
  align-self: center;
}

.video-container {
  margin: 20px;
  margin-left: 40px;
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition-duration: 550ms;
  transition-property: background-color;
}

.project-title {
  font-family: "Nova Round", cursive;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .portfolio-title {
    margin-left: 10px;
    font-size: 36px;
  }
  .portfolio-standard-header {
    font-size: 20px;
  }
  .portfolio-standard-text {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .portfolio-title {
    margin-left: 10px;
    font-size: 24px;
  }
  .portfolio-standard-header {
    font-size: 16px;
  }
  .web-project-container {
    flex-direction: column;
  }
  .art-project-container {
    flex-direction: column;
  }
  .portfolio-standard-text {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 13px;
  }
}
.blog-title {
  margin: 20px;
  margin-left: 65px;
  margin-right: 1500px;
  font-size: 36px;
  font-family: "Nova Round", cursive;
  transition-duration: 550ms;
  transition-property: color;
}

.blog-title:hover {
  color: #00C6AB;
}

.blog-posts-container {
  margin: 0px 85px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
}

.blog-posts {
  background-color: #2d9cbd;
  border-radius: 5px;
  padding: 80px;
  display: flex;
  flex-direction: column;
  width: 120px;
}

.blog-intro {
  margin: 0px 80px;
}

.blog-posts:hover {
  background-color: #00AE95;
}

.blog-posts-text {
  margin-left: 15px;
}

.blog-new {
  display: flex;
  justify-content: space-between;
  margin: 0px 80px;
  gap: 40px;
}

.blog-login {
  text-align: end;
  margin-right: 80px;
}

.add-blog-form-container {
  display: flex;
  flex-direction: column;
  margin: 0px 150px;
}

.add-blog-form-direction {
  display: flex;
  flex-direction: column;
}

.add-blog-form {
  margin: 10px;
}

.add-blog-input-post {
  padding: 100px;
}

.blog-single-container {
  margin: 0px 70px;
}

.blog-single-text {
  margin: 0px 15px;
}

.blog-single-tab-title {
  font-family: "Nova Round", cursive;
}

.blog-button {
  color: white;
  background-color: #00C6AB;
  border-radius: 5px;
}

.login-container {
  display: flex;
  flex-direction: column;
}

.login-form {
  margin: 40px 70px;
  display: flex;
  flex-direction: column;
}

.login-title {
  margin: 20px;
  margin-left: 0px;
  margin-right: 1500px;
  font-size: 48px;
  font-family: "Nova Round", cursive;
  transition-duration: 550ms;
  transition-property: color;
}

.login-title:hover {
  color: #00C6AB;
}

.login-user {
  margin-right: 25px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.login-password {
  margin-right: 25px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.login-user-input {
  margin-left: 15px;
}

.login-password-input {
  margin-left: 20px;
}

.login-button {
  margin-left: 20px;
  width: 80px;
  color: white;
  background-color: #00C6AB;
  border-radius: 5px;
}

.login-back {
  margin-left: 90px;
}

body {
  top: 0;
  left: 0;
  margin: 0;
  font: 15px "Quicksand", sans-serif;
  background-color: #354A54;
  color: white;
  margin-bottom: 60px;
}
body p {
  color: white;
}
body a {
  text-decoration: none;
  color: white;
}

html {
  scroll-behavior: smooth;
}

.return-arrow-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.return-arrow {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 40px 0px 40px;
}

.return-arrow-inside {
  width: 20%;
  padding: 20px;
  background-color: #2d9cbd;
  border-radius: 5%;
  transition-duration: 550ms;
  transition-property: color;
  font-size: 22px;
}

.return-arrow-inside:hover {
  background-color: #00AE95;
  color: #EB7E3F;
}

.grow {
  transition: all 0.3s ease-in-out;
}

.grow:hover {
  transform: scale(1.02);
}

.links {
  transition-duration: 550ms;
  transition-property: color;
  color: #dede92;
}

h3 {
  font-family: "Nova Round", cursive;
}

.links:hover {
  color: #EB9B6C;
}

.load-animation {
  animation: fadeIn 2s, moveInLeft 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes moveInLeft {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
.picture-content {
  margin-left: 70px;
}

.picture-title {
  margin: 20px;
  margin-left: 65px;
  font-size: 48px;
}

.box ul li {
  position: absolute;
  width: 35px;
  height: 35px;
  list-style: none;
  opacity: 0;
  background: radial-gradient(#98DCFE, transparent, transparent);
  bottom: 0;
  z-index: -1;
  left: 10vw;
  animation: animate 15s linear infinite;
  overflow: hidden;
}

.box ul li:nth-child(2) {
  left: 45vw;
  animation-delay: 5.5s;
}

.box ul li:nth-child(3) {
  left: 60vw;
  animation-delay: 0.5s;
}

.box ul li:nth-child(4) {
  left: 75vw;
  animation-delay: 8s;
}

.box ul li:nth-child(5) {
  left: 15vw;
  animation-delay: 1s;
}

.box ul li:nth-child(6) {
  left: 80vw;
  animation-delay: 6s;
}

.box ul li:nth-child(7) {
  left: 85vw;
  animation-delay: 13.5s;
}

.box ul li:nth-child(8) {
  left: 24vw;
  animation-delay: 12s;
}

@keyframes animate {
  0% {
    transform: translateY(40vh) scale(1);
    opacity: 0;
    bottom: 0;
  }
  50% {
    transform: translateY(20vh) scale(4.5);
    opacity: 0.2;
    bottom: 50vh;
  }
  100% {
    transform: translateY(-10vh) scale(8.5);
    opacity: 0;
    bottom: 100vh;
  }
}
.box-small ul li {
  position: absolute;
  width: 35px;
  height: 35px;
  list-style: none;
  opacity: 0;
  background: radial-gradient(#98DCFE, transparent, transparent);
  bottom: 0;
  z-index: -1;
  left: 10vw;
  animation: animate-small 10s linear infinite;
  overflow: hidden;
}

.box-small ul li:nth-child(2) {
  left: 45vw;
  animation-delay: 5.5s;
}

.box-small ul li:nth-child(3) {
  left: 60vw;
  animation-delay: 0.5s;
}

.box-small ul li:nth-child(4) {
  left: 75vw;
  animation-delay: 8s;
}

.box-small ul li:nth-child(5) {
  left: 15vw;
  animation-delay: 1s;
}

.box-small ul li:nth-child(6) {
  left: 80vw;
  animation-delay: 6s;
}

.box-small ul li:nth-child(7) {
  left: 85vw;
  animation-delay: 13.5s;
}

.box-small ul li:nth-child(8) {
  left: 24vw;
  animation-delay: 12s;
}

@keyframes animate-small {
  0% {
    transform: translateY(-5vh) scale(3);
    opacity: 0;
    bottom: 0;
  }
  50% {
    transform: translateY(-7vh) scale(7);
    opacity: 0.3;
    bottom: 50vh;
  }
  100% {
    transform: translateY(-10vh) scale(10);
    opacity: 0;
    bottom: 100vh;
  }
}
@media screen and (max-width: 400px) {
  .box ul li:nth-child(3) {
    display: none;
  }
  .box ul li:nth-child(4) {
    display: none;
  }
  .box ul li:nth-child(6) {
    display: none;
  }
  .box ul li:nth-child(7) {
    display: none;
  }
  .box-small ul li:nth-child(3) {
    display: none;
  }
  .box-small ul li:nth-child(4) {
    display: none;
  }
  .box-small ul li:nth-child(6) {
    display: none;
  }
  .box-small ul li:nth-child(7) {
    display: none;
  }
}

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