* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
    background-image: url('mizore.jpg');
    background-size: cover;
    background-position: center;
}

audio {
    width: 100%;
}

.lyrics {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 15%;
    bottom: 15px;
    font-size: 40px;
    font-family: Arial;
    text-align: center;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

@media (max-width: 600px) {
    .lyrics {
        font-size: 30px;
    }
}