body {
    background-color: #333;
    color: white;
    margin: 0;
}

h1, p {
    font-family: "Terminal", monospace;
}

h1 {
    font-size: 2em;
}

p {
    font-size: 1.25em;
}

audio {
    padding-bottom: 10px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(20vh - 112px);
    justify-content: center;
    margin-bottom: 40px;
}

.music {
    /* display: flex; */
    background-color: #1f1f1f;
    flex-direction: column;
    overflow-y: auto;
    width: 33vw;
    height: 40vh;
    /* align-items: center; */
    margin-left: 32px;
    padding-left: 25px;
    justify-content: center;
}

.button {
    display: inline-block;
    width: 100px;
    height: 35px;
    background-color: #333;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    border: none;
    padding-left: 48px;
    line-height: 5px;
    text-decoration: none;
    font-family: "Terminal", monospace;
    cursor: pointer;
    margin-top: 25px; /* Pushes it down to be below content */
    transition: width 0.3s ease-in-out;
}

/* Reveal full text on hover */
.button:hover {
    width:calc(40vh + 250px); /* Allows button to expand */
    text-align: left;
    max-width: 100%; /* Prevents it from overflowing */
}

.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 4px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
