#book-cover{
    width: 500px;
    height: 675px;
    /* border: 1px solid black; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    font-family: "elza-condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 100px;
    align-items: center;
    line-height: 1em;
    padding:10px;

    position: relative;
    left: calc(50vw - 260px);

    background-size:cover;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.882));
}

#title-text{
    text-shadow: 1px 1px 20px black;
}

#randomize-button{
    width: 100px;
    height:50px;
    border: 1px solid black;
    position: relative;
    bottom: 50px;
    left:10px;
    display:flex;
    justify-content: center;
    align-items:center;
    text-align: center;
    cursor:pointer;

    font-family: monospace;
    border-radius: 10px;
    /* font-weight: 500;
    font-style: normal; */
}

@media (max-width: 450px){
    #book-cover{
        width: 90vw;
        height: 85vh;
        left: 2.5vw;
        padding: 1vw;
        font-size: 75px;
    }

    #randomize-button{
        top:10px;
        display:none;
    }
}