body {
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
    background-image: url('assets/bg.png'); /* Path to your background image */
    background-size: cover; /* Cover the entire viewport */
    background-position: center; /* Center the background image */
    background-repeat: no-repeat; /* Prevent background image from repeating */
    color: #fff; /* Text color on top of the background image */
}

.site-title {
    margin: 0;
    font-size: 1.618em;
    font-weight: normal;
}

h1 {
    font-size: 2.618em;
    font-weight: normal;
}

h2 {
    font-size: 1em;
    font-weight: normal;
}

p {
    font-size: 1.618em;
    font-weight: normal;
}

.container {
    padding: 20px 44px;
}

header {
    grid-column: 1 / span 12;
}

.site-title {
    margin: 0;
}

main {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 44px;
}

img {
    width: 100%;
    height: auto;
    border-radius: 33px;
}

.col-header {
    margin-top: 100px;
    grid-column: 5 / span 7;
}

.col-header-body {
    grid-column: 5 / span 7;
    margin-bottom: 100px;
}

.col-img1 {
    grid-column: 1 / span 12;
}

.col-img2 {
    grid-column: 1 / span 4;
}

.col-img3 {
    grid-column: 5 / span 8;
}

footer {
    padding: 0;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 1000px;
}

marquee {
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.audio-container {
    padding: 20px 44px; /* Padding of 44px on left and right */
    position: relative; /* Make the container a positioned parent */
}

#play-button {
    display: none; /* Hide the play button initially */
    position: absolute; /* Position the button relative to its container */
    top: 50%; /* Align the button vertically */
    right: 20px; /* Align the button to the right with a margin */
    transform: translateY(-50%); /* Center the button vertically */
}