/* General Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #ff9a8b, #fecfef, #feeba9);
    color: #2c2c54;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
}

/* Header */
header {
    text-align: center;
    margin-top: 30px;
}

header .logo {
    font-family: 'Rubik Moonrocks', cursive;
    font-size: 3rem;
    color: #2c2c54;
}

header .logo span {
    color: #f0932b;
}

header .tagline {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    margin-top: 10px;
}

/* Main Content */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.joke-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s;
}

.joke-card:hover {
    transform: translateY(-5px);
}

.joke-text {
    font-size: 1.5rem;
    color: #2c2c54;
    margin: 20px 0;
    font-weight: 400;
    line-height: 1.6;
}

.joke-btn {
    background: #f0932b;
    color: #fff;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.joke-btn:hover {
    background: #e67e22;
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #2c2c54;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}
