
* {
    box-sizing: border-box;
}

body {
    background-image: url('img/waldemar-brandt-cheese.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: 'Montserrat', sans-serif;;
    display: flex;
    flex: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 20px;
}

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

h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 44px;
    margin: 0;
    opacity: 0.5;
    letter-spacing: 1px;
}

.joke {
    font-size: 28px;
    letter-spacing: .5px;
    line-height: 40px;
    margin: 50px auto;
    max-width: 600px;
}

.btn {
    background-color: #fed65f;
    font-size: 16px;
    color: rgb(80, 80, 80);
    text-transform: uppercase;
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    padding: 14px 40px;
    cursor: pointer;
}

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

.btn:focus {
    outline: 0;
}