/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    color: #000;
    font-family: Arial, sans-serif;
    padding: 2rem;
}

.wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.left-gif {
    width: 40px; 
    height: auto;
}

.right-gif {
    width: 40px; 
    height: auto;
}

.note-gif {
    width: 80px;
    margin: .5rem auto;
    display: block;
    opacity: .9;
}

.polaroid {
    background: white;
    padding: 2px 2px 2px 2px; 
    margin: 0.6rem 0;
    transform: rotate(-1deg);
}

.polaroid img {
    width: 90%;
    display: block;
}



/* HEADER */
.site-header {
    text-align: center;
    margin-bottom: 1px;
}

.title {
    font-family: 'Annie Use Your Telescope', cursive;
    font-size: 80px;
    color: #f2c3b9; /* pastel green accent */
    text-shadow: 2px 2px 4px rgba(235, 205, 195, 0.5);
}

/* BOARD */
.board {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 650px;
    margin: 0 auto;
}

/* CENTER EMPTY AREA */
.center-space {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 360px;
    height: 220px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* NOTE BASE */
.note {
    position: absolute;
    width: 220px;
    background: #ffffff;
    border: 2px solid #b3cf99;
    padding: 1rem;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.note:hover {
    transform: scale(1.05) rotate(0deg);
}

/* TAPE */
.note::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 20px;
    width: 46px;
    height: 22px;
    background: #f7f4e8;
    opacity: 0.9;
    transform: rotate(-10deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border-radius: 2px;
}

/* TEXT */
.note h3 {
    color: #b3cf99;
    margin-bottom: 0.5rem;
}

.note p,
.note ul {
    font-size: 0.9rem;
    line-height: 1.4;
}

.note ul {
    list-style: circle inside;
}

.note a {
    color: #1f2a1f;
    text-decoration: none;
    font-weight: bold;
}

.note a:hover {
    text-decoration: underline;
}

/* INDIVIDUAL NOTE POSITIONS (OVERLAP) */
.n1 { top: 40px; left: 40px; transform: rotate(-3deg); }
.n2 { top: 160px; left: 80px; transform: rotate(2deg); }
.günther { top: 280px; left: 30px; transform: rotate(-4deg); }

.n4 { top: 60px; right: 60px; transform: rotate(2deg); }
.n5 { top: 220px; right: 40px; transform: rotate(-2deg); }
.n6 { top: 340px; right: 80px; transform: rotate(1deg); }

.n7 {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-1deg);
}

/* FOOTER */
.site-footer {
    margin-top: 2.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}
