#jokeBlock {
    box-sizing: border-box;
}

#jokeMain {
    margin: 0;
    background-color: rgb(27%, 73%, 87%);
}

.container {
    width: 100%;
    height: 68vh;
    background: url("../img/robot.gif");
    background-position: left center;
    background-size: contain;
    background-repeat: no-repeat;
}
.audioBlock {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.jokeTellerSummary {
    width: 85vw;
    padding-top: 10vh;
    padding-right: 10vh;
    color: white;
    font-size: 1.8em;
    font-weight: bold;
}
#jokeBlock {
    display: flex;
    flex-direction: row;
}

#button {
    cursor: pointer;
    outline: none;
    width: 200px;
    height: 50px;
    background: #ff3482;
    color: white;
    font-family: "Courier New", Courier, monospace;
    font-size: 20px;
    border: none;
    border-radius: 5px;
    box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.2);
    margin-top: 10vh;
    margin-left: 25vw;
}

button:hover {
    filter: brightness(95%);
}

button:active {
    transform: scale(0.98);
}

button:disabled {
    cursor: default;
    filter: brightness(30%);
}

@media screen and (max-width: 1000px) {
    .container {
        background-position: center center;
        background-size: cover;
    }
    button {
        box-shadow: 5px 5px 30px 20px rgba(0, 0, 0, 0.5);
    }
}
