* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: Arial, Helvetica, sans-serif;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 100vw;
    height: 100vh;
    display: flex;
    background-color: #f0f0f0;
}

#jokeContainer {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    text-align: center;
}

#newJokeButton {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    cursor: pointer;
    outline: none;

    &:focus {
        outline: 1px solid white;
    }

    &:hover {
        background-color: #228dff;
    }
}

#logoContainer {
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
    display: flex;
}