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

body {
  background-color: rgb(138, 0, 251);
  font-family: "Rubik", sans-serif;
}

.marquee {
  animation: marquee 15s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

h1 {
  font-weight: 800;
  font-size: 50px;
  margin-top: 10px;
  background: linear-gradient(
    to bottom,
    #ffffff,
    #989998
  ); /* Change colors as needed */
  -webkit-background-clip: text; /* Set the background-clip property */
  background-clip: text;
  color: transparent; /* Make the text transparent */
}

.button-container {
  display: flex;
  justify-content: center; /* Align buttons horizontally in the center */
  margin-top: 20px; /* Adjust as needed */
  background-color: #ffffff; /* White background */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25); /* Shadow */
  padding: 20px; /* Add padding for better spacing */
  border-radius: 10px; /* Rounded corners */
}

.button {
  background: linear-gradient(to bottom, #0073ff, #0055ff);
  color: #ffffff;
  text-decoration: none;
  border: none;
  padding: 13px 100px;
  font-size: 24px;
  font-family: Rubik, sans-serif;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 10px 6px rgba(0, 0, 0, 0.25);
  margin-left: 1150px;
  transition: transform 0.25s ease;
  margin: 17px;
}

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

h2 {
  font-weight: 800;
  font-size: 26px;
  background: linear-gradient(to bottom, #ffffff, #989998);
  -webkit-background-clip: text; /* Set the background-clip property */
  background-clip: text;
  color: transparent; /* Make the text transparent */
  text-align: center; /* Center align the text */
  animation: fadeInOut 2.75s ease infinite; /* Apply animation and loop infinitely */
}

@keyframes fadeInOut {
  0% {
    opacity: 0; /* Start with no opacity */
    transform: scale(0.68); /* Start with a smaller size */
  }
  100% {
    opacity: 1; /* Fully visible */
    transform: scale(1); /* Normal size */
  }
}

.images {
  display: flex;

  margin-top: 50px; /* Adjust as needed */
}

.image {
  margin-right: 75px; /* Add space between the images */
  transform: rotate(7deg); /* Reset the rotation for the first image */
}

.image:last-child {
  margin-right: 0; /* Remove margin for the last image */
  transform: rotate(-7deg); /* Rotate the second image by -7 degrees */
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fefefe;
  margin: 15% auto;
  box-shadow:
    0 5px 8px 0 rgba(0, 0, 0, 0.5),
    0 10px 20px 0 rgba(0, 0, 0, 0.5);
  padding: 20px;
  border: 3px solid #888;
  width: 50%;
  border-radius: 20px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
