/* Base Styles */
body {
    /* Stretch the GIF to cover the whole page */
    background: url('/images/welurkaround.gif') no-repeat center center fixed;
    background-color: #0a0a0a;
    background-size: cover; /* Ensures the GIF covers the entire viewport */
    height: 100vh; /* Full height of the viewport */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    color: white; /* Text color for visibility */
    font-family: Arial, sans-serif;

}

/* Center Container */
.container {
    text-align: center;
    padding: 0px;
    border: 45px solid #111;
    width: 49%;
    max-width: 641px;
    background-color: #111;
    box-shadow: 0px 0px 79px rgba(43, 14, 255, 0.66);
}

.containerimages {
display: grid; /* Enables grid layout */
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Dynamically creates columns */
  gap: 10px; /* Adds space between images */
  width: 100%; /* Ensures the container spans the available width */
  max-width: 1200px; /* Optional: Add a max width for centered grids */
  margin: 0 auto; /* Centers the container */
}


.containerimages img {
  width: 100%; /* Make images responsive */
  aspect-ratio: 1 / 1; /* Enforce square aspect ratio */
  object-fit: cover; /* Ensure images cover their space without distortion */
  border: 2px solid #ccc; /* Optional: Add a border to images */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.containerimagesPROMO {
display: grid; /* Enables grid layout */
  grid-template-columns: repeat(fit, minmax(100px, 1fr)); /* Dynamically creates columns */
  gap: 10px; /* Adds space between images */
  width: 100%; /* Ensures the container spans the available width */
  max-width: 1200px; /* Optional: Add a max width for centered grids */
  margin: 0 auto; /* Centers the container */
}

.containerimagesPROMO img {
  width: 100%; /* Make images responsive */
  /*aspect-ratio: 1 / 1; /* Enforce square aspect ratio */
  object-fit: cover; /* Ensure images cover their space without distortion */
  border: 2px solid #ccc; /* Optional: Add a border to images */
  border-radius: 5px; /* Optional: Add rounded corners */
}

.leavetxt {
    color: #5d7570;
    text-decoration: none;
    font-size: 1.2em;
    animation: flash 1.5s infinite alternate;
}
.plunge-link:hover {
    text-decoration: underline;
}
/* Flash Animation */
@keyframes flash {
    from { color: white; }
    to { color: #66c0ff; }
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
}



.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

/* tooltips */


/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

.tooltip .tooltiptext {
  width: 120px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}