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

body {
    background-color: #222222;
    color: #ffffff;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100vh;
}

.gif-container {
    position: fixed;
    left: 100px;
    margin-top: 120px;
}

.animated-gif {
    width: 400px;
    height: 400px;
    animation: fadeIn 1s ease-in;
}

@keyframes drop {
    0% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

.confetti{
   max-width: 640px;
   display: block;
   margin: 0 auto;
   border: 1px solid #ddd;
   user-select: none;
}

@keyframes havai-fisek {
  0% {
    top: -10px;
    left: calc(25% - 5px);
    opacity: 0;
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    left: calc(75% + 5px);
    opacity: 0;
    transform: rotateZ(1440deg) scale(1);
  }
}

h1 {
    margin-top: 20px;
    color: copper;
    font-size: 36px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

h2 {
    position: absolute;
    top: 40%;
    right: 120px;
    transform: translateY(-50%);
    color: copper;
    font-size: 12px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

h3 {
  text-align: center;
  color: copper;
  font-size: 3em;
  animation: blink 2s infinite;
}
h4 {
    color: copper;
    font-size: 16px;
    text-align: left;
    animation: fadeIn 1s ease-in;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.confetti-right,
.confetti-left {
  position: fixed;
  width: 10px;
  height: 10px;
  background-color: #fca311;
}

.confetti-right {
  right: 5px;
  animation: confetti-right 3s infinite;
}

.confetti-left {
  left: 5px;
  animation: confetti-left 3s infinite;
}

@keyframes confetti-right {
  0% {
    top: -10px;
    opacity: 0;
    transform: rotateZ(0deg) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
    transform: rotateZ(1440deg) scale(1);
  }
}

@keyframes confetti-left {
  0% {
    top: -10px;
    opacity: 0;
    transform: rotateZ(0deg) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 100vh;
    opacity: 0;
    transform: rotateZ(-1440deg) scale(1);
  }
}

button {
    background-color: copper;
    border: none;
    color: black;
    padding: 30px 50px;
    text-align: center;
    text-decoration: bold;
    display: inline-block;
    font-size: 12px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 2em;
    animation: buttonPulse 1s ease-in-out infinite;
    position: absolute;
    top: 70%;
    right: 400px;
    transform: translateY(-50%);
}

button:hover {
    background-color: gold;
}

.mint {
    font-size: 4em;
    font-weight: bold;
    color: copper;
}

.social-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 400px;
    margin-left: 150px
}

.social-links a {
    font-size: 24px;
    color: copper;
}

.social-links a:hover {
    color: copper;
}
@media only screen and (max-width: 414px) {
  .gif-container {
    left: 20px;
  }
  
  h1, h2 {
    font-size: 24px;
  }
  
  button {
    padding: 15px 25px;
    font-size: 16px;
    right: 20px;
  }
  
  .social-links {
    margin-top: 200px;
    margin-left: 50px;
  }
  
  .social-links a {
    font-size: 18px;
  }
}
