@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL PAGE BACKGROUND */
body {
    font-family: 'Fredoka', sans-serif;

    background-image: url("../images/checkered.png");
    background-repeat: repeat;
    background-size: auto;
    background-position: top left;

    min-height: 100vh;
    padding: 60px 20px;
    text-align: center;
}

/* Title */
h1 {
    color: #222222;
    font-size: 2.8rem;
    margin-bottom: 40px;
}

/* White Content Box */
main {
    background-color: #ffffff;
    max-width: 650px;
    margin: 0 auto 40px auto;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Jester GIF */
.jester {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Pun Text */
#pun {
    font-size: 1.2rem;
    color: #333;
    margin: 20px 0 30px 0;
    min-height: 60px;
}

/* Button */
button {
    background-color: #ff6a3d;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #e85a30;
    transform: scale(1.05);
}

/* Footer */
footer {
    font-size: 0.9rem;
    color: #ffffff;
}