@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
    background: url('https://images.unsplash.com/photo-1502679726485-931beda67f88?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=de463bf685e4e3df80b0957fd4a2fa1c&auto=format&fit=crop&w=1355&q=80');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: 'Open Sans', sans-serif;
    background-color: #1d1136;
    width: 100vw;
    height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    border: none;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

.create-joke {
    width: 200px;
    height: 50px;
    font-size: 25px;
    background: #E8E8E8;
    border-radius: 22px;
    display: inline-block;
}

h3 {
    color: #1C1033;
}

button {
    margin: 20px;
}

button:hover {
    opacity: 0.8;
}
button:active {
    opacity: 0.5;
}
p {
    display: block;
    margin: 0 20px;
}