@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: var(--font-main);
  scroll-behavior: smooth;
  /* outline: 1px solid red; */
}

:root {
  --primary-color: #7e0b0b;
  --text-color: white;
  --bg-color: #161616;
  --hover-shadow: 0 0 25px rgba(192, 22, 22, 1);
  --font-main: 'Poppins', sans-serif;
}

html{
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #000000;
  background-image: url('../img/bg-transparant.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: var(--text-color);
}

header{
  margin-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 10%;
  background-color: transparent;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.5));
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo{
  font-size: 3rem;
  color: var(--primary-color);
  font-weight: 800;
  cursor: pointer;
  transition: 0.5s ease;
  display: inline-block;
  font-size: 3rem;
  padding: 0.25em 0.75em; 
  filter: drop-shadow(5px 0 5px rgb(59, 0, 0));
}

.logo:hover {
  transform: scale(1.1);
  border-radius: 50px;
  box-shadow: var(--hover-shadow);
  transform-origin: center;
}

.logo > span {
  color: var(--text-color);
}

nav a{
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active{
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

section{
  min-height: 100vh;
  padding: 5rem 9% 5rem;
}

.home{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8rem;
}

.home .home-content h1{
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
}

span{
  color: var(--primary-color);
}

.home-content h3{
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.home-content p{
  font-size: 1.7rem;
}

.home-content {
  padding-left: 100px;
  margin-top: 200px;
}

.home-img {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.home-img img {
  width: 125rem;
  height: auto;
  border-radius: 300px;
  cursor: pointer;
  padding: 0 55px;
  filter: drop-shadow(10px 10px 10px rgb(112, 0, 0));
  transform-style: preserve-3d;
  animation: spinPause 4s infinite;
  animation-timing-function: cubic-bezier(0.75, 0.05, 0.25, 1);
}

@keyframes spinPause {
  0% {
    transform: rotateY(0deg) scale(1.1);
  }
  10% {
    transform: rotateY(0deg) scale(1.1); /* Pause sebentar di depan */
  }
  40% {
    transform: rotateY(180deg) scale(1);
  }
  60% {
    transform: rotateY(180deg) scale(1);
  }
  90% {
    transform: rotateY(360deg) scale(1.1);
  }
  100% {
    transform: rotateY(360deg) scale(1.1); /* Kembali ke awal */
  }
}

#home::after {
  content: "";
  position: absolute;
  left: 11%;
  top: 59rem;
  width: 42rem;
  height: 15px;
  border-radius: 100%;
  background: var(--primary-color);
  box-shadow: 10px 0 0 10px var(--primary-color);
  z-index: -5;
}

.social-icons a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  background-color: transparent;
  border: 0.2rem solid var(--primary-color);
  font-size: 2rem;
  border-radius: 50%;
  margin: 3rem 1.5rem 3rem 0;
  transition: 0.3s ease;
  color: var(--primary-color);
}

.social-icons a:hover{
  color: black;
  transform: scale(1.3) translateY(-5px);
  background-color: var(--primary-color);
  box-shadow: 0 0 25px var(--primary-color);
  transform-origin: center;
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem ;
  background-color: black;
  border-radius: 4rem;
  font-size: 1.6rem;
  color: var(--primary-color);
  letter-spacing: 0.2rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  cursor: pointer;
  margin-right: 13px;
}

.btn:hover{
  transform: scale(1.1) translateY(-3px);
  background-color: var(--primary-color);
  color: black;
  min-width: 100px;
  transform-origin: center;
}

.btn, .btn-demo, .btn-outline {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.extraCV {
  margin-top: 10px;
}

.extraCV a{
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 23rem;
  margin-top: 10px;
  margin-left: 145px;
  padding: 1rem ;
  background-color: black;
  border-radius: 4rem;
  font-size: 1.2rem;
  color: var(--primary-color);
  letter-spacing: 0.2rem;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.extraCV a:hover{
  transform: scale(1.04) translateY(-2px);
  background-color: var(--primary-color);
  color: black;
  min-width: 100px;
  transform-origin: center;
}

.svg-panah {
  margin-left: 24rem;
}

.hidden .animated-item {
  opacity: 0;
  transform: translateY(-2px);
  pointer-events: none;
}

.show .animated-item {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s ease, transform 0.5s ease;
  animation: fadeUp 0.5s ease forwards;
}

.show .animated-item:nth-child(1) {
  animation-delay: 0s;
}

.show .animated-item:nth-child(2) {
  animation-delay: 0.2s;
}

.show .animated-item:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  from {
    opacity: 0.5;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.typing-text{
  font-size: 34px;
  font-weight: 600;
  min-width: 280px;
}

.typing-text span{
  position: relative;
}

.typing-text span::before{
  content: "Software Developer";
  color: var(--primary-color);
  animation: words 20s infinite;
}

.typing-text span::after{
  content: "";
  position: absolute;
  width: calc(100% + 80px);
  height: 100%;
  border-left: 3px solid black;
  right: -8;
  animation: cursor 0.6s infinite;
}

@keyframes cursor{
  to{
    border-left: 3px solid var(--primary-color);
  }
}

@keyframes words{
  0%, 20%{
   content: "Front-End Developer in Progress";
  }
  20%, 40%{
    content: "Web Developer in the Making";
  }
  40%, 60%{
    content: "UI Enthusiast & Front-End Dev";
  }
  60%, 80%{
    content: "Front-End Learner with Big Goals";
  }
  80%, 100%{
    content: "Developer Building My Own Path";
  }
}

.box-line {
  width: 90%;
  height: 3px;
  top: 0;
  left: 0;
  right: 0;
  margin: 100px auto 0 auto;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  animation: borderPulse 4s linear infinite;
  position: relative;
  border-radius: 1px;
  box-shadow: 0 0 50px #a1000088;
  clip-path: polygon(0% 0%, 98% 0%, 100% 50%, 98% 100%, 0% 100%, 2% 50%);
}

/*About*/
#about {
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-header {
  margin-bottom: 6rem;
  text-align: center;
  position: relative;
}

.about-header h1 {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 15px rgba(151, 19, 19, 0.7);
  position: relative;
  display: inline-block;
}

.about-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: var(--primary-color);
  box-shadow: 0 0 20px var(--primary-color);
}

.about-header p {
  font-size: 2.2rem;
  color: var(--text-light);
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.about-text {
  flex: 1;
  position: relative;
}

.about-text h2 {
  font-size: 4rem;
  margin-bottom: 3rem;
  color: var(--text-white);
  position: relative;
  display: inline-block;
}

.about-text h2 span {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(151, 19, 19, 0.5);
}

.about-text h2::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.about-text:hover h2::before {
  transform: scaleX(1);
}

.about-text p {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--text-light);
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid rgba(151, 19, 19, 0.3);
  transition: all 0.4s ease;
}

.about-text p:hover {
  border-left: 2px solid var(--primary-color);
  padding-left: 3rem;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.about-img {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img-container {
  position: relative;
  width: 500px;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Rotating border effect */
.about-img-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: conic-gradient(
    var(--primary-color) 0deg,
    transparent 90deg,
    var(--primary-color) 180deg,
    transparent 270deg,
    var(--primary-color) 360deg
  );
  opacity: 0;
  animation: rotate 3s linear infinite;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.about-img-container:hover::before {
    opacity: 1;
}

/* Inner glow effect */
.about-img-container::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 60%, rgba(151, 19, 19, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.about-img-container:hover::after {
  opacity: 1;
  
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-img img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(151, 19, 19, 0.3);
  transition: all 0.5s ease;
  filter: grayscale(10%) contrast(95%);
  box-shadow: 
    0 0 30px rgba(151, 19, 19, 0.582),
    inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.about-img-container:hover img {
  transform: scale(1.05);
  border-color: var(--primary-color);
  filter: grayscale(0%) contrast(105%) brightness(120%);
  box-shadow: 
    0 0 50px rgba(151, 19, 19, 0.6),
    0 0 100px rgba(151, 19, 19, 0.37),
    inset 0 0 20px rgba(0, 0, 0, 0.2);
}

.about-img-container:hover img{
  background-image: url(../img/logo-html-more-red-no-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
}

/* skill */
#skills {
  padding: 0 auto;
}

.skills-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skills-header h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}

.skills-header span {
  color: var(--primary-color);
}

.skills-header p {
  font-size: 2rem;
}

.skills-title {
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}

.skills-title span {
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(255,255,255,0.1);
}

#web-skills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.skills-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.skill-card svg {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
}

.skill-card svg:hover {
  transform: scale(1.2);
}

.skill-card {
  background: rgb(10, 10, 10);
  border: 1px solid var(--primary-color);
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  opacity: 0;
  animation-delay: calc(var(--index) * 0.2s);
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px var(--primary-color);
}

.skill-card img {
  width: 50px;
  margin-bottom: 1rem;
}

.skill-card h3 {
  font-size: 15px;
  display: inline-block;
}

.skill-card h3:hover{
  color: var(--primary-color);
}

.skill-card p {
  font-size: 12px;
}

.skill-card svg {
  width: 100%;
  max-width: 40px;
  height: auto;
  display: block;
  margin: 0 auto 1rem;
}

#blog {
  padding: 0 auto;
}

.blog-header h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 5px;
}

.blog-header span {
  color: var(--primary-color);
}

.blog-header p {
  font-size: 2rem;
}

.judul-blog{
  margin-top: 3.5rem;
  font-size: 2rem;
  /* text-align: center; */
}

.blog-container {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.blog-card {
  background: rgb(10, 10, 10);
  border: 2px solid var(--primary-color);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  height: auto;
  transform: skewX(4deg);
  box-shadow: 5px 5px 1px var(--primary-color);
}

.blog-card:hover {
  transform: skewX(-4deg);
  box-shadow: -5px 5px 1px var(--primary-color);
  background-color: #000000a4;
}

.blog-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.blog-card p {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.blog-card a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
  font-size: 1.3rem;
}

.blog-card a::before{
  content: "Read More →";
  color: var(--primary-color);
  animation: href 3s infinite;
}

@keyframes href{
  0%,10%{
    content: "R";
  }
  10%,20%{
    content: "Re";
  }
  20%,30%{
    content: "Rea";
  }
  30%,40%{
    content: "Read";
  }
  40%,50%{
    content: "Read ";
  }
  50%,60%{
    content: "Read M";
  }
  60%,70%{
    content: "Read Mo";
  }
  70%,80%{
    content: "Read Mor";
  }
  80%,90%{
    content: "Read More";
  }
  90%,95%{
    content: "Read More ";
  }
  95%,100%{
    content: "Read More →";
  }
}

.blog-card {
  position: relative;
  overflow: hidden;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(151, 19, 19, 0.349), transparent);
  transition: 0.5s;
}

.blog-card:hover::before {
  left: 100%;
}

.page-counter {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #ccc;
}

.blog-card .date {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 0.25rem;
  display: block;
}

.blog-links {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  font-size: 1.2rem;
}

#portfolio {
  padding: 5rem 9%;
  position: relative;
  padding: 0 auto;
}

.portfolio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portfolio-header h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.portfolio-header span {
    color: var(--primary-color);
}

.portfolio-header p {
  font-size: 2rem;
}

.portfolio-container {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.project-card {
  background: rgba(10, 10, 10, 0.95);
  border: 2px solid var(--primary-color);
  border-radius: 1rem;
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 15px var(--primary-color);
}

.project-card img {
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #333;
}

.tech-stack span {
  margin-right: 5px;
  border: 2px solid;
  border-radius: 1.5rem;
  padding: 4px;
  font-size: 1.3rem;
  font-weight: bold;
}

.project-card h3 {
  font-size: 2rem;
  margin: 1rem 0 0.5rem;
  color: var(--font-main);
}

.project-card p {
  font-size: 1.5rem;
  color: var(--font-main);
}

.project-links {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

.btn-demo {
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-demo:hover {
  background-color: var(--primary-color);
  color: black;
  transform: translateY(-5px);
}

.btn-outline {
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: black;
  transform: translateY(-5px);
}

#contact {
  position: relative;
  overflow: hidden;
  padding: 0 auto;
}

.contact-header {
    display: flex;
    align-items: center;
}

.contact-header h1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 5px;
}

.contact-header span {
    color: var(--primary-color);
}

.contact-header p {
  font-size: 2rem;
}

.contact-container {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  flex-wrap: wrap;
}

.contact-form {
  flex: 0.4;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form label {
  font-size: 1.8rem;
  font-weight: bold;
}

.contact-form label:hover {
  color: var(--primary-color);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 2.5rem;
  border: 2px solid var(--primary-color);
  background-color: #0d0d0d;
  color: white;
  font-size: 1.5rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 20px;
}

#contact::after {
  content: "";
  position: absolute;
  right: 20%;
  top: 535px;
  width: 350px;
  height: 15px;
  border-radius: 100%;
  background: var(--primary-color);
  box-shadow: 10px 0 0 0 var(--primary-color);
  animation: pulseGlowRotate 5s linear infinite;
  z-index: -1;
}

@keyframes pulseGlowRotate {
  0%, 100% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  50% {
    transform: scale(0.8);
    opacity: 1;
  }
}

.contact-visual {
  flex: 0.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  opacity: 0.9;
}

.contact-quote {
  font-size: 2rem;
  position: relative;
  bottom: 120px;
  color: #ccc;
  font-style: italic;
  max-width: 80%;
  filter: drop-shadow(0 0 2.5px rgb(130, 3, 5));
}

.contact-quote::before{
  content: "";
  color: var(--text-color);
  animation: quote 4s infinite;
}

@keyframes quote {
  0%, 14% {
    content: "Every";
  }
  14%, 28%{
    content: "Every great";
  }
  28%, 42%{
    content: "Every great product";
  }
  42%, 56%{
    content: "Every great product starts";
  }
  56%, 70%{
    content: "Every great product starts with";
  }
  70%, 84%{
    content: "Every great product starts with a";
  }
  84%, 100%{
    content: "Every great product starts with a conversation.";
  }
}

.contact-visual img {
  width: 280px;
  position: relative;
  top: 0;
  animation: floatY 5s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgb(107, 3, 5));
}

@keyframes floatY {
  0% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
  100% { transform: translateY(0); }
}

.box-line-quote {
  width: 75%;
  height: 2px;
  margin: 13px auto 0 auto;
  background: linear-gradient(to right, transparent, #ff3c3c, transparent);
  position: relative;
  bottom: 120px;
  border-radius: 3px;
  box-shadow: 0 0 50px #ff3c3c88;
  clip-path: polygon(0% 0%, 98% 0%, 100% 50%, 98% 100%, 0% 100%, 2% 50%);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 8px rgba(255, 0, 0, 1);
  transition: all 0.2s ease;
}

#footer {
  background-color: #0a0a0a;
  padding: 4rem 9% 2rem;
  color: var(--text-color);
  font-size: 1.4rem;
  border-top: 1px solid var(--primary-color);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  width: 150px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 1.6rem;
  color: #999;
}

.footer-right {
  flex: 1;
}

.footer-right h3 {
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer-right p {
  margin: 0.3rem 0;
}

.footer-socials a {
  margin-right: 1rem;
  font-size: 2rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  color: #666;
  font-size: 1.3rem;
  border-top: 1px solid #222;
  padding-top: 1rem;
}

html, body {
  overflow-x: hidden;
}

img, section, div {
  max-width: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}