@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background: url("./Joke1.jpg") no-repeat;
    background-size: cover;
    font-style: italic;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 20px;
}

h1 {
    margin: 10px;
    letter-spacing: 2px;
    color: #fff;
    justify-content: center;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    padding: 40px 10px;
    text-align: center;
    max-width: 100%;
    width: 550px;
}

h3 {
    margin: 0;
    opacity: 0.5;
    letter-spacing: 2px;
}

.joke {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 35px;
    margin: 50px auto;
    max-width: 500px;
    font-family: "Times New Roman", Times, serif;

}

.btn {
    background-color: #537cd4;
    color: rgb(255, 252, 252);
    border: 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.btn:focus {
    outline: 0;
}