body {
    background-color: black;
    color: white;
    text-align: center;
}

#body {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div p {
    font-family: 'Courier New', Courier, monospace;
}

img {
    height: 250px;
    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a {
    color: grey;
    font-size: 50px;
}

a:hover {
    color: white;
    text-decoration: dotted;
}

#play {
    padding: 60px;
    background-color: green;
    clip-path: polygon(25% 15%, 75% 50%, 25% 85%);
    transition: transform 0.2s;
    cursor: pointer;
}
input {
    background-color: transparent;
    color: inherit;
    border-style: dashed;
    width: 90%;
}

input:focus {
    outline: none;
    box-shadow: none;
}

.tapeReplay {
    border-style: dashed;
    background-color: transparent;
    color: grey;
    border-style: dashed;
    padding: 10px;
    white-space: nowrap; /* Ensures the text doesn't break into a new line */
}

/* Aligning tapes horizontally with wrapping */
.tapeContainer {
    display: flex;
    flex-wrap: wrap; /* This makes the tapes wrap to the next line if space is available */
    gap: 10px; /* Add space between tapes */
    justify-content: center; /* Center the tapes horizontally */
}

.tape {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tapeReplay:hover {
    color: white;
    cursor: pointer;
}
