/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

  
      body {
    background-color: #ffffff;
    background-image: url("WP1.jpeg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 1500px 900px;
    
    color: black;
    padding-top: 50px;
    padding-bottom: 100px;
    padding-left: 22%;
    padding-right: 22%;
  }
  
  .no-bullets {
    list-style-type: none; /* Remove bullets */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
  }
  
  .column-left {
    float: left;
    width: 45%;
  }
  
  .column-right {
    float: right;
    width: 45%;
  }

  
  .column-right, .column-left, .row {
    font-family: sans-serif;
    font-size:15px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 2%;
    padding-right: 2%;
    border-radius:5px;
    background-color:#9098d8;
    margin-bottom: 30px;
    line-height: 1;
  }
  
  
  .header {
    text-align: center;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 5%;
    border-radius:5px;
    background-image: url("H1.jpeg");
    background-size:100%;
  }
  
  .tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
  .tab button {
    background-color: white;
    opacity: 0.5;
    width:32.96%;
    border-radius: 8px 8px 5px 5px;
    border: 2px solid #9098d8;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
   }
   
   .tab button:hover {
      background-color: #b6bbe5;
    }
    
    .tab .active {
      background-color: #b6bbe5;
    }
    
  
  @keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @media screen and (max-width: 600px) {
    .column-right, .column-left {
      width: 90%;
      padding: 5%;
      margin-top: 10px;
    }
    .column-left {
      margin-bottom: 0px;
    }
    .tab button {
      width: 100%;
      margin-top: 5px;
    }
  }