.tree {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/palm_tree.png) 55% 1vmin no-repeat;
    background-size: 70%;
    filter: brightness(0%) blur(.5px);
}
.container {
    width: 6vmin;
    height: 6vmin;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    border: 2px dashed black;
    margin-left: 3vmin;
}
.lines {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: repeating-linear-gradient(rgba(0, 0, 0, .725), rgba(0, 0, 0, .725) 2.5%, transparent 2.5%, transparent 5.25%);
    animation: lines linear infinite 1s;
}
@keyframes lines {
    to {
        background-position: 0 1.1vmin;
    }
}
.gradient {
    height: 100%;
    background: linear-gradient(#A12BFB 25%, #FC2DFC, #EB209B 75%);
}
#title-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Adjust spacing between elements */
    margin: 20px;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}
#main-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    top: 10%;
    left: 50%;
    width: 40vw;
    max-width: 90vw;
    z-index: 10;
    text-align: center;
    border: 5px solid #000;
    border-radius: 18px;
    background: rgba(120, 120, 255, 0.7); /* semi-transparent ocean blue */
    box-sizing: border-box;
    transform: translateX(-50%);
    padding: 32px 24px;
}
.title {
    font-size: 5em;
    color: white;
    margin: 0;
    text-shadow: 0 0 8px #cc80ff, 0 0 16px #cc80ff, 2px 2px 4px rgba(0, 0, 0, 0.5);
}
#tabs {
    margin-top: 20px;
    border: 5px solid #000;
    border-radius: 10px;
}
#tabs ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
}
#tabs li {
    float: left;
}
#tabs a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}
#tabs li a:hover {
    background-color: mediumvioletred;
}
.active {
    background-color: mediumvioletred;
}
#content{
    font-family: 'Roboto Mono', monospace;
    width: 80%;
}
.tab-content {
    width: 100%;
}

.audio-button{
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
    background-color: darkblue;
    color: white;
    width: 100%;
    box-sizing: border-box;
}
#ambient-loops ul {
    list-style-type: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1em;
    width: 100%;
}
#ambient-loops li {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.5em;
    margin-bottom: 0;
}

#bubble-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(3vw, 2fr));
    grid-auto-flow: row;
    gap: 4px; /* Adjust spacing between bubbles */
    width: 100%;
    height: 100%;
    border: 5px solid #000;
    user-select: none;
}

.bubble {
    background: linear-gradient(to bottom right, white, ghostwhite);
    box-shadow: inset 8px 8px 8px rgba(255, 255, 255, 0.3), inset -8px -8px 8px rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    animation: bubble-rise linear infinite;
    width: 3vw;
    height: 3vw;
    cursor: pointer;
}

.popped {
    box-shadow: inset 10px 10px 10px rgba(0, 0, 0, 0.25), inset -10px -10px 10px rgba(0, 0, 0, 0.5);
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.good-button{
    background-color: cadetblue;
    color: white;
    cursor: pointer;
    text-decoration: none;
    padding: 10px 20px;
    text-align: center;
    border: 5px solid #000;
    margin: 5px;
}

#sketch-pad-canvas{
    width: 100%;
    height: 100%;
    border: 5px solid #000;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    cursor: crosshair;
}