.container{
    display: grid;
    grid-template-rows: auto 1fr 0.25fr;
    height: 100%;
}

html,body{
    height: 100%;
    margin: 0;
    color: aliceblue;
    font-family: 'Consolas', 'Courier New', Courier, monospace;
}

body {
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.introduction{
    justify-self: center;
    align-self: center;
    padding: 20px;
    text-shadow: 0 0 20px black;
}

.menu summary{
    list-style: none;
    height: 50px;
    width: 100px;
}

.menu summary img{
    height: 42px;
    margin: 4px;
}

.menu summary::marker{
    display: none;
}

.menu[open] summary{
    background-color: rgba(220, 20, 60, 0.5);
    backdrop-filter: blur(8px)
}

.menu-content{
    position: absolute;
    top: 50px;
    left: 0;
    bottom: 0;
    width: 100px;
    background-color: rgba(220, 20, 60, 0.5);
    backdrop-filter: blur(8px)
}

.menu-content a{
    display:block;
    color: aliceblue;
    text-decoration: none;
    padding: 8px;
}

.menu-content a:hover{
    background-color: rgba(220, 20, 60, 0.2);
}

.music {
    display: flex;
    /* grid-auto-rows: auto; */
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding: 20px;
}

.music iframe {
    flex: 1;
    width: 320px;
}