@import url('https://fonts.googleapis.com/css2?family=Poppins');
* {
    box-sizing: border-box;
}


/* These are some basic CSS property, still confused? let me know in comments on github/twitter, will help you out */

body {
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #686de0;
}

.container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 50px 20px;
    text-align: center;
    max-width: 100%;
    width: 800px
}

h3 {
    margin: 0;
    opacity: 0.5;
    letter-spacing: 2px;
}

.joke {
    font-size: 30px;
    letter-spacing: 1px;
    line-height: 40px;
    margin: 50px auto;
    max-width: 600px;
    transition: 0.2s ease-in;
}

.btn {
    background-color: #c98b4d;
    border: 0;
    border-radius: 10px;
    color: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
}

.btn:active {
    transform: scale(0.98);
}

.btn:focus {
    outline: 0;
}