
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f6f8fa;
    color: #222;
}

.container-header {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    padding: 48px 0 32px 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.content-header div {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.desc-header {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #e0e7ff;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.fade-out {
    opacity: 0;
}

.container-create, .container-list {
    display: flex;
    justify-content: center;
    margin: 64px 0 32px 0;
}

.content-create, .content-list {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(80, 112, 255, 0.08);
    padding: 32px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 320px;
}

.button-new, .button-list {
    display: inline-block;
    padding: 14px 36px;
    margin: 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(90deg, #2575fc 0%, #6a11cb 100%);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(80, 112, 255, 0.12);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
}

.button-new:hover, .button-list:hover {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
    .content-create, .content-list {
        min-width: 90vw;
        padding: 24px 8px;
    }
    .container-header {
        padding: 32px 0 16px 0;
    }
    .content-header div {
        font-size: 2rem;
    }
}

.madeby {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #b0b7c3;
    opacity: 0.7;
    letter-spacing: 1px;
    z-index: 100;
    user-select: none;
    pointer-events: none;
} 