/*
Orange - #FF9933 - rgb(255, 153, 51)
White - #FFFFFF - rgb(255, 255, 255)
Navy Blue - #000080 - rgb(0, 0, 128)
Green - #138808 - rgb(19, 136, 8)
*/
body {
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 35%, #FFFFFF 65%, #000080 85%, #138808 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: "Baloo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 2rem;
    padding: 30px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.container:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.5);
}

h1 {
    color: #000080;
    border-bottom: 2px solid #FF9933;
    display: inline-block;
    padding-bottom: 5px;
}

p {
    color: #333;
    font-size: 1.1rem;
}

footer {
    margin-top: 2rem;
    color: #333;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .container {
        margin: 5rem auto;
        padding: 40px;
    }

    h1 {
        font-size: 2.5rem;
    }
}
