#wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }

 #tiles li {
    list-style-type: none;
  }

  #tiles li:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); 
    transform: scale(1); 
    background-color: #E1D0D3;
    color: #674846;
    opacity: 0.5;
  }
  /* Section */
  .section-title {
    text-align: center;
    margin-bottom: 20px;
  }

  .section-title h3 {
    font-size: 24px;
    font-weight: bold;
    color:  #ECCFD7;
  }

  /* Price_wrapper */
  .price_wrapper {
    margin-top: 30px;
  }

  .name-price-desc {
    padding: 20px;
    background-color: #674846;
  }

  .name-price-desc .head-title {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #ECCFD7;
  }

  .name-price-desc .name {
    font-size: 20px;
    font-weight: bold;
    color:  #ECCFD7;
  }

  .name-price-desc .spl-price {
    font-size: 18px;
    font-weight: bold;
    color: #E1D0D3;
  }

  .name-price-desc .desc {
    margin-top: 10px;
    font-size: 14px;
    color: #CEB6B6;
  }

  /* Name a-tag (link) */
  .name a-tag {
    color:  #ECCFD7;
    text-decoration: none;
  }

  .name a-tag:hover {
    text-decoration: underline;
  }

  /* Style-4-border */
  .style-4-border {
    display: block;
    margin-top: 5px;
    border-top: 1px solid #CEB6B6;
  }

  /* Head-title.tab-links_spl */
  .head-title.tab-links_spl {
    font-size: 16px;
    color: #CEB6B6;
    text-align: center;
    display: block;
    padding-bottom: 10px;
  }

  /* Section contact-me */
 .contact-me .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
  }

  h4 {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }

  .contact-me a {
    text-decoration: none;
    color: #CEB6B6;
  }
  .conact-me a:hover {
    text-decoration: underline;
  }
  .contact-me a:visited {
    color: #A08C8C;
  }

  .contact-me a:active {
    color: #8F6363;
  }

 .alert {
    padding: 40px;
    width: 65vw;
    height: 20vh;
    font-size: 2.4rem;
    text-align: center;
    position: fixed;
    background-color:  #8b7474 !important;
    color: #d4c6c6 !important;
  }
  
  .alert:hover {
    background-color: #a38f8e !important;
    color: #775959 !important;
  }

  .closebtn {
    margin-left: 15px;
    color: #d4c6c6;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .closebtn:hover {
    color: #8F6363;
  }

  /* Responsive Styles */
  @media screen and (max-width: 768px) {
    .section-title h3 {
      font-size: 20px;
    }
  
    .name-price-desc .head-title {
      font-size: 16px;
      margin-bottom: 5px;
    }
  
    .name-price-desc .name {
      font-size: 18px;
    }
  
    .name-price-desc .spl-price {
      font-size: 16px;
    }
  
    .name-price-desc .desc {
      font-size: 12px;
    }
  
    .head-title.tab-links_spl {
      font-size: 14px;
      padding-bottom: 5px;
    }
  
    h4 {
      font-size: 16px;
    }

    .alert {
        width: 90vw;
        height: auto;
    }
  }
  
  /* Adjusting container width for even smaller screens */
  @media screen and (max-width: 480px) {
    .price_wrapper .name-price-desc {
      padding: 10px;
    }
  
    .contact-me .container {
      max-width: 100%;
      padding: 10px;
    }
  }
