body {
    margin: 0;
    height: 100vh;
    background: #f5e6d3;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Sticky Note Style */

.note {
    width: 260px;
    min-height: 220px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    transform: rotate(-3deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.note:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 25px 45px rgba(0,0,0,0.35);
}

/* Colors */

.pink { background: #ffccd5; }
.yellow { background: #fff3b0; }
.blue { background: #cce5ff; }
.final { background: #ffc8dd; }

/* Typography */

.note h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.note p {
    font-size: 16px;
    line-height: 1.5;
}