code {
  background-color: #0f0f0f;
  padding: 2px 4px;
  border-radius: 3px;
  font-family: monospace;
  color: #FFFCB8;
}

.header-image-basic {
  max-width: 550px;
  width: 80%;
  height: auto;
  margin: 0 auto 0;
  display: block;
  border-radius: 10px;
}

.background-basic {
    height: 160px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/img/bg-blur.jpg);
    background-color: rgba(102, 27, 139, 0.397);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: lighten;
    opacity: 0.3;
  }
  
  .header-basic {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 160px;
    padding: 20px;
    left: 0;
    z-index: 34;
  }
  
  .header-content-basic {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .button-basic {
    background-color: black;
    border: none;
    border-radius: 15px 15px 15px 15px;
    color: #dddddd;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 222px;
    filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.441));
  }
  
  .button-basic:hover {
    background-color: #1E1E1E;
  }
  
  .button-basic.clicked {
    background-color: #ffaa01;
  }
  
  .main-content-basic {
    position: absolute;
    margin-top: 200px;
    width: 100%;
    text-align: center;
  }
  
  .content-wrapper-basic {
    width: 80%;
    max-width: 1200px; 
    min-width: 300px;
    margin: auto; 
  }
  
  .columns-basic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .columns-google {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    min-height: 1800px;
  }
  
  .text-container-basic {
    flex: 3;
    display: flex;
    flex-direction: column;
  }

  .text-container-google {
    flex: 3;
    display: flex;
    flex-direction: column;
    min-height: 1800px;
  }
  
  .content-section-basic {
    flex: 1;
    text-align: center;
    text-justify: center;
  }

  .content-section-google {
    flex: 1;
    text-align: center;
    text-justify: center;
    min-height: 1800px;
  }
  
  .widget-container-basic {
    flex: 2;
  }
  
  .separator-large-basic {
    width: 100%;
    height: 40px;
  }
  
  .separator-med-basic {
    width: 100%;
    height: 15px;
  }

  .separator-small-basic {
    width: 100%;
    height: 7px;
  }
  
  .footer-basic {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 40px auto 20px;
    line-height: 150%;
    color: #a0a0a0;
    max-width: 78%;
  }
  
  .footer-basic a {
    text-decoration: underline;
    color: #929292;
  }
  
  /*@media (max-width: 1100px) {
    .columns-basic {
      flex-direction: column;
      align-items: center;
    }
    .content-section-basic {
      margin-top: 0;
    }
  }*/

  .responsive-iframe {
    width: 640px;
    height: 1800px;
  }
  
  /* Adjust width for smaller screens */
  @media (max-width: 600px) {
    .responsive-iframe {
      width: 400px;
      height: 1880px;
    }
    .content-section-basic {
      min-height: 1880px;
    }
    .footer-basic {
      font-size: 12px;
    }
  }