body {
    background-image: url(walalabackground.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.title {
    text-align: center;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
}

.title h1 {
    font-size: 2em;
    margin: 0;
}

.title h2 {
    line-height: 45px;
    font-size: font-size 2em;
}

#home-icon {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 200px;
    height: auto;
    z-index: 1000;
    cursor: pointer;
}

.container {
    max-width: 100%;
    width: 100%;
    height: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 110px; /* Add a top margin of 10px */
}

.container-content {
    overflow-y:auto;
    max-height: 300px;
}

.column {
    width: 30%;
    max-width: 100%;
    height: 510px;
    background-color: rgba(0, 0, 0, 0);
    padding: 20px;
    text-align: center;
    margin: 10px 10px 0; /* Add 10px top margin and 10px left/right margin */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 1.5em;
    margin: 0;
}

.column-header {
    background-color: rgba(0, 0, 0, 0); /* Background color for the header */
    padding: 0px; /* Adjust the padding as needed */
    text-align: center;
}

.column-content {
    max-width: 100%; /* Limit the text to the column's width */
    max-height: 485px;
    overflow-y: auto;
}

.column p {
    padding: 10px; /* Add some spacing for the content */
}

.column-content p {
    white-space: normal; /* Allow text to wrap to the next line */
    overflow-y: auto; /* Add a scrollbar when content overflows */
    max-height: 485px; /* Set a maximum height for the content area */
}

.title h2 {
    font-size: 2vh; /* Use 4% of the viewport height for the font size */
    margin: 0;
}

.column-content ul {
    list-style: none; /* Remove default list bullets */
    padding: 0;
}

.item-box {
    display: flex;
    align-items: center;
}

.frame {
    width: 120px; /* Set a fixed width for the frame */
    height: 90px; /* Set a fixed height for the frame */
    background-color: #ccc; /* Background color of the frame */
    margin-right: 10px; /* Add spacing between the frame and text box */
}

#image-template-music{
    width: 120px;
    height: auto;
    margin-right: 10px;    
}
#image-template{
    width: 100px;
    height: auto;
    margin-right: 10px;    
}

.text-box {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Background color of the text box */
    padding: 10px; /* Add spacing within the text box */
    border: 1px solid #ccc; /* Add a border to the text box */
    overflow: hidden; /* Hide text overflow outside the text box */
}

.text-box p {
    margin: 0;
    transform: translateY(-35px);
}

.text-box h3 {
    transform: translateY(-50px) translateX(30px);
    font-size: smaller;
    text-align: right;
    margin-right: 30px;
}

h4 {
    font-size: 11px;
    transform: translateY(-20px) translateX(-132px)
}

.spotify-link {
    position: fixed;
    top: 22px;
    right: 70px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px;
    border-radius: 5px;
    z-index: 1000;
}

.spotify-link a {
    text-decoration: none;
    color: #333;
}

.spotify-link img {
    width: 90px;
    height: 90px;
}

.spotify-link p {
    font-size: 12px;
    margin: 5px 0 0;
}

/* Media query for mobile devices */
@media (max-width: 414px) {
    .text-box {
        display: none; /* Hide the text box on mobile devices */
    }
    .container {
        width: 75%; /* Make the container width 100% for mobile devices */
        transform: translateY(55px);
    }
    .spotify-link {
        top: 10px; /* Adjust the top position */
        right: 10px; /* Adjust the right position */
        max-width: 40px;
    }
    .spotify-link img {
        width: 40px; /* Reduce the width of the Spotify logo */
        height: 40px; /* Reduce the height of the Spotify logo */
    }
    #home-icon {
        width: 90px; /* Reduce the width of the home icon */
        height: auto; /* Let the height adjust automatically */
        top: 10px; /* Adjust the top position */
        left: 10px; /* Adjust the left position */
    }
    .title h2 {
        text-align: left;
        font-size: 0.9em; /* Reduce the font size for h2 */
        line-height: 1; /* Adjust the line height for better spacing */
        padding: 10px; /* Add padding to prevent overlapping */
        margin-right: 50px;
    }
}

@media (min-width: 415px) {
    .text-box {
        display: none; /* Hide the text box on mobile devices */
    }
    .container {
        width: 75%; /* Make the container width 100% for mobile devices */
        transform: translateY(55px);
    }
    .spotify-link {
        top: 10px; /* Adjust the top position */
        right: 10px; /* Adjust the right position */
        max-width: 40px;
    }
    .spotify-link img {
        width: 40px; /* Reduce the width of the Spotify logo */
        height: 40px; /* Reduce the height of the Spotify logo */
    }
    #home-icon {
        width: 90px; /* Reduce the width of the home icon */
        height: auto; /* Let the height adjust automatically */
        top: 10px; /* Adjust the top position */
        left: 10px; /* Adjust the left position */
    }
    .title h2 {
        text-align: left;
        font-size: 0.9em; /* Reduce the font size for h2 */
        line-height: 1; /* Adjust the line height for better spacing */
        padding: 10px; /* Add padding to prevent overlapping */
        margin-right: 50px;
    }
}