.float-module {
    background-color: rgba(255, 255, 255, 0);
    margin: 20px auto;
    padding: 20px;
    max-width: 860px;
    box-sizing: border-box;
  }

  .float-module img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }

  body,
  html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Arial', sans-serif;
    background: url('/neweb/img/watchdog.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
  }

  #header-container {
    height: 100px;
  }

  #index-container {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100% - 100px);
    align-items: center;
  }

  #main-content {
    width: 30%;
    padding: 20px 5% 10px 2%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin: 200px 100px; */
    padding-left: 10%;
  }

  #main-content h1 {
    font-size: 3em;
    color: white;
    font-weight: bold;
    margin-bottom: 0.5em;
  }

  #index-container #main-content p {
    line-height: 1.6;
  }

  #main-content h1,
  #main-content p,
  .explore-button {
    text-align: left;
  }

  .explore-button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    display: block;
    width: fit-content;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
  }

  .explore-button:hover {
    background-color: rgb(20, 67, 124);
    color: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  }

  #theme-selector {
    width: 50%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    position: relative;
  }

  .theme-option {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /* top: -200px; */
    display: none;
    border-radius: 25px;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    margin: 20px;
  }

  .navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
  }


  .theme-option img {
    width: 80%;
    height: auto;
    transition: transform 0.5s ease;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-left: 50px;
  }

  .theme-option.active img {
    transform: scale(1.1);
    opacity: 1;
  }

  .arrow {
    cursor: pointer;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    padding: 10px;
    margin: 0 10px;
    z-index: 101;
    transform: translateY(-50%);
  }

  .theme-option.active {
    display: block;
  }

  .pro2 h2,
  .pro2 h3,
  .pro2 p {
    color: black;
  }


  @media (max-width: 600px) {
#index-container {
  display: none;
}
}