body {
  background: radial-gradient(circle, rgb(7, 7, 7) 0%, rgb(0, 0, 0) 100%);
  color: whitesmoke;
  text-align: center;
  margin: 0;
  font-family: 'Courier New', Courier, monospace;
  transition: background 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  border: 1px solid #e072f6;
  position: relative;
  width: 300px; /* Set your preferred width */
  height: 590px; /* Set your preferred height */
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  padding: 30px;
  backdrop-filter: blur(8px);
  background-color: rgba(0, 0, 0, 0.301);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

/* Webites the fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px); /* Optional: You can also add a slight vertical translation */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to elements with the "fade-in" class */
.fade-in {
  opacity: 0; /* Start with opacity 0 to hide the element initially */
  animation: fadeIn 1s ease-out forwards; /* Adjust the duration and easing as needed */
}

.emo-div {
  position: relative;
}

.emo-heart {
  width: 150px;
  height: auto;
  position: relative;
  top: 20px; /* to adjust with hight*/
}

.custom-text {
  font-size: 1em; 
  transition: color 0.3s ease;
  color: #e072f6;
  margin-top: 30px;
}

.my-link-container .my-link,
.my-link {
  color: #fafafa;
  text-decoration: none;
  margin-bottom: 10px;
  border: 1px solid #e072f6;
  border-radius: 5px;
  font-size: 1em;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.479);
  overflow: hidden; /* Ensure the icon and text don't overflow the button */
}

.my-link-container .my-link {
  height: 50px;
  width: 150px; /* Set a fixed width for the buttons */
  display: flex;
  justify-content: flex-start; /* Align content to the left */
  padding: 0 10px; /* Add padding to the button for space between icon and text */
}

.custom-text2 {
  font-size: 1em; 
  transition: color 0.3s ease;
  color: #ffffff;
  margin-top: -5;
}

.my-link:hover,
.my-link-container .my-link:hover {
  color: #fff132;
  background-color: rgba(236, 144, 255, 0.5); 
}

.my-link:active,
.my-link-container .my-link:active {
  transform: translateY(2px); 
}

.icon {
  width: 30px; 
  height: 30px; 
  margin-right: 5px; 
  filter: invert(1); /* Invert the color */
}

.flag-icon {
  display: inline;
  margin-right: 0px; 
  width: 1rem;
  height: rem;
  object-fit: contain; 
  vertical-align: middle; 
}

.my-button:hover {
  color: #ffffff;
  background-color: rgba(232, 120, 255, 0.185); /* Adjust the hover background color */
}

.my-button:active {
  transform: translateY(2px); 
}

#zuru {
  font-size: 1em;
  position: relative;
  animation: hoverAnimation 1s infinite alternate; 
  text-shadow: rgb(255, 0, 255) 0px 0px 18px; 
  top: 20px 
}

.snow {
  position: fixed;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  background-image: 
    url("https://proxy.everskies.com/a/https://s3-eu-west-1.amazonaws.com/static-ressources/s1.png"),
    url("https://proxy.everskies.com/a/https://s3-eu-west-1.amazonaws.com/static-ressources/s2.png"),
    url("https://proxy.everskies.com/a/https://s3-eu-west-1.amazonaws.com/static-ressources/s3.png");
  z-index: -1;
  animation: snow 10s cubic-bezier(.45,.16,.42,.41), snow 8s 10s linear infinite;
}

.scroll {
  position: fixed;
  animation-name: across;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-play-state: pause;
  animation-timing-function: linear;
  column-width: 100px;
}

@media only screen and (min-width: 768px) {
  .container {
    width: 600px; /* Increase the width for larger screens */
    height: 400px; /* Set your preferred height for desktop */
    flex-direction: row; /* Set a two-column layout for larger screens */
  }

  .my-link-container {
    flex-direction: row; /* Align buttons in a row for larger screens */
  }

  .my-link-container .my-link,
  .my-link {
    font-size: 1em; /* Increase font size for larger screens */
  }

  .my-link-container .my-link {
    width: 150px; /* Set a fixed width for the buttons in desktop mode */
    margin-right: 10px; /* Add space between buttons */
    margin-bottom: 1; /* Remove bottom margin for buttons in desktop mode */
  }

  .icon {
    width: 30px; /* Increase icon size for larger screens */
    height: 30px; /* Increase icon size for larger screens */
    margin-right: 8px; /* Add space between icon and text */
  }
}
}
@media only screen and (min-width: 768px) {
  .container {
    width: 95%; 
  }
}

* {
  cursor: url('https://proxy.everskies.com/a/https://cur.cursors-4u.net/nature/nat-10/nat988.cur'), auto !important;
}

div:hover {
  animation-play-state: paused;
}

@keyframes hoverAnimation {
  to {
    transform: translateY(-10px);
  }
}

@keyframes snow {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: 500px 1500px, 400px 800px, -300px 600px;
  }
}

@keyframes across {
  0% {transform: translate(0px, 0px)}
  100% {transform: translate(-4000px, 0px)}
}

