body,
html {
    color: #0c0b0b;
    background-image: url("images/hitchhiker.webp");
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Bitter', serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#box {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 2px 6px 12px rgba(0, 0, 0, 0.9);
    text-align: left;
    max-width: 400px;
}

#title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow: 3px 2px 5px rgba(0, 0, 0, 0.7);
}

#audiobooks {
    text-align: left;
}

#audiobooks p {
    margin: 0.2rem 0;
}

#app {
    width: 100%;
    height: 100%;
}