body {
    /* background-image: url('background.jpg'); */
    text-align: center;
    /* background-repeat: no-repeat;
    background-size: 100% 100%; 
    height: 100vh; */
    margin: 0px;
    background-color: rgb(60, 128, 128);
    margin: 0;
    padding: 0;
}

.parent-block {
    display: inline-block; /* Allows the blocks to align vertically */
    text-align: left; /* Ensures the blocks stack vertically and align to the left */
}

.tableBlock {
    margin: 0;
    padding: 0;
}

.content-table {
    border-collapse: collapse;
    box-sizing: border-box;
    width: 1000px;
    table-layout: fixed;
}

img {
display: block; /* Ensures images are block-level elements */
    margin: 0;
    padding: 0;
}

.template {
    position:absolute;
    left: 0; right: 0; top: 0; bottom: 0; margin: auto;
    z-index: -1;
}

.whitebackground {
    background-color: rgb(57, 84, 172);
    width: 150px;
    padding: 10px;
    font-size: 30px;
    color: yellow;
    text-shadow: 2px 2px 4px black; 
    border: 3px solid rgb(51, 51, 51);
}

.headerbackground {
    background-color: white;
    width: 60%;
    display: inline-block;
    padding: 15px;
    font-size: 40px;
    font-weight: bold;
}

audio {
    display: inline-block !important;
    width: min(520px, 92vw) !important;
    height: 100px !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 9999 !important;
    filter: none !important;
    pointer-events: auto !important;
    margin: 24px auto !important;
  }

  /* Common culprits to neutralize while debugging */
  .bg, .overlay, .hero::before, .hero::after {
    pointer-events: none !important;
  }

  .body-content {
    position: relative;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent background */
    color: #333;
    z-index: 1; /* Ensure the content is above the image */
  }