.panel {
    background-image: url('/patterns/PanelPattern2.png');
    background-size: 45px;
    background-color: #0e0e0e;
    background-blend-mode: soft-light;
    border: solid #4d4d4d;
    box-sizing: border-box;
    width: 100%;
    max-width: 750px;
    height: fit-content;
    color: white;
    text-align: center;
    padding: 15px;
    box-shadow: 15px 10px 10px black;
}

.button-text {
    margin: 0;
    font-family: 'VT323';
    font-size: 25px;
}

#button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

#title {
    max-width: 400px;
    width: 100%;
    filter: drop-shadow(white 0 0 4px);
}

.no-select {
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.button {
    border: 20px solid;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-source: url("/buttons/Button.png");
    border-image-slice: 55 fill;
    border-image-repeat: stretch;
    box-sizing: border-box;
    position: relative;
    color: white;
    height: fit-content;
    width: 230px;
    padding: 0 24px;
    text-align: center;
    margin: 5px 0;
}

.button:hover {
  filter: drop-shadow(0 0 8px white);
}

.container {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
    align-content: center;
    align-items: center;
}