
body {
    background-image: url(https://i.pinimg.com/1200x/02/81/0a/02810ace7e6604eafff450d59435ce73.jpg);
    background-size: cover;
    margin: 0;
    padding: 0;
    font-family: 'Courier New', Courier, monospace;
}

/* Header styles */
.header {
    background-color: #C19A6B; /* chocolate */
    justify-content: center;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    color: #F7F3ED;
    margin: 10px auto;
    gap: 20px;
    width: 90%;
    max-width: 1200px;
    box-sizing: border-box;
}

/* Navigation links */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.nav-links a {
    color: #EADDCA; /* almond */
    text-decoration: none;
}

.nav-links a:hover {
    color: white;
}

.rows {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 10px auto;
    box-sizing: border-box;
}

.column {
    padding: 12px;
    box-sizing: border-box;
    border: 2px solid #C19A6B;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
    color: #533D23;
}

.column.left-side {
    background-color: #EADDCD;
}

.column.middle-side {
    background-color: #F7F3ED;
    flex: 2; 
}

.column.right-side {
    background-color: #EADDCD;
}

/*layout for small screens */
@media screen and (max-width: 600px) {
    .rows {
        flex-direction: column;
    }
    
    .column {
        width: 100%;
        flex: none; 
    }
}

/*-------MUSIC PLAYER BY GLENTHEMES-------*/
#glenplayer02 {
    position: relative;
    margin-top: 5px;
    width: 100%; /* stretch to column width */
    z-index: 5;
}

div.ex2 {
    display: flex;          /* make children inline */
    align-items: center;    /* vertical center */
    gap: 8px;               /* space between items */
    background: white;
    opacity: 0.75;
    margin: auto;
    border: 3px double #000;
    padding: 5px;
    box-sizing: border-box;
}

.music-controls {
    user-select: none;
    -webkit-user-select: none;
    width: auto;            /* adjust width automatically */
    font-size: 16px;        /* slightly larger icon */
    cursor: pointer;
    display: inline-block;
}

.playy, .pausee { color: #000; }

.pausee { display: none; }

.sonata {
    display: none;
}

.labeltext {
    font-family: 'Courier New';
    font-size: 12px;
    color: #222;
    margin: 0;
}
