body {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Prevent horizontal scroll from tigers popping out */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-title {
    margin-top: 20px;
    font-size: 3em;
    text-align: center;
    z-index: 10;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    z-index: 10;
    width: 100%;
    max-width: 800px;
}

.display-area {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    /* Keep space stable */
    width: 100%;
}

#main-logo {
    max-width: 100%;
    max-height: 400px;
}

iframe {
    width: 560px;
    height: 315px;
    max-width: 100%;
}

.input-container input {
    font-family: 'Comic Sans MS', 'Chalkboard SE', 'Comic Neue', sans-serif;
    font-size: 1.5em;
    padding: 10px;
    border: 3px solid black;
    border-radius: 10px;
    text-align: center;
    width: 300px;
    outline: none;
}

/* Goofy Tiger Positioning */
.tiger-decor {
    position: absolute;
    z-index: 1;
    /* Behind content generally, or to the side */
    pointer-events: none;
    /* Let clicks pass through */
}

/* Random positioning to look silly */
.tiger1 {
    top: 50px;
    left: 20px;
    width: 250px;
    transform: rotate(10deg);
}

.tiger2 {
    bottom: 20px;
    right: 20px;
    width: 350px;
    transform: rotate(-15deg);
}

.tiger3 {
    top: 150px;
    right: 50px;
    width: 220px;
    transform: rotate(5deg);
}

.tiger4 {
    bottom: 100px;
    left: 50px;
    width: 200px;
    transform: rotate(-20deg);
}

.tiger5 {
    top: 50%;
    left: 10px;
    width: 150px;
    transform: translateY(-50%) rotate(45deg);
}

.tiger6 {
    top: 60%;
    right: 10px;
    width: 300px;
    transform: translateY(-50%) rotate(-10deg);
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .main-title {
        font-size: 2em;
    }

    .tiger-decor {
        opacity: 0.5;
        /* Fade them out a bit so text is readable if they overlap */
    }

    .tiger1 {
        width: 100px;
        top: 10px;
        left: -20px;
    }

    .tiger2 {
        width: 120px;
        bottom: 10px;
        right: -20px;
    }

    .tiger3 {
        width: 80px;
        top: 80px;
        right: -10px;
    }

    .tiger4 {
        width: 80px;
        bottom: 50px;
        left: -10px;
    }

    .tiger5 {
        display: none;
    }

    /* Too cluttered for mobile */
    .tiger6 {
        width: 100px;
        top: 70%;
        right: -20px;
    }

    .input-container input {
        width: 80%;
    }
}