@keyframes glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 0, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(0, 0, 255, 1));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(0, 0, 255, 0.8));
    }
}

header img {
    width: 90%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    top: 20px;
    margin-left: 50px;
    z-index: 1000;
    animation: glow 2s infinite alternate ease-in-out;
}


.email-button {
    position: fixed;
    top: 35px; 
    right: 53px;
    font-size: 2rem; 
    font-style: normal; 
    font-weight: bold;
    color: blue; 
    text-decoration: none;
    background-color: white;
    border: 2px solid blue;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    line-height: 1; 
    font-family: "forma-djr-display", sans-serif;
    padding: 0;
}


.email-button span {
    position: relative; 
    top: 2px; 
}

.question-button {
    position: fixed;
    top: 35px; 
    left: 53px; 
    font-size: 2rem; 
    font-weight: bold;
    font-style: normal;
    color: blue; 
    text-decoration: none;
    background-color: white;
    border: 2px solid blue;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
    line-height: 1; 
    font-family: "forma-djr-display", sans-serif;
    padding: 0;
}



.question-button summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}

.question-button summary span {
    transform: translateY(3px); 
    display: inline-block;
}

.question-button summary::-webkit-details-marker {
    display: none; 
}



.email-button:hover {
    background-color: blue; 
    color: white; 
    border-color: blue; 
}


.question-button img {
    display: none;
    position: absolute;
    top: 100px;
    left: 200px;
    width: 50vw;
    height: 50vh;
    object-fit: cover;
    z-index: 9999;
    opacity: 50%;
}

.question-button[open] img {
    display: block;
    filter: grayscale(100%) contrast(150%) brightness(100%) sepia(100%) hue-rotate(6790deg) saturate(1700%) invert(100%);
}


.question-button .question-text {
    position: absolute;
    top: 290px;  
    left: 560px; 
    transform: translate(-50%, -50%); 
    color: blue;  
    text-align: center; 
    z-index: 10001;
    padding: 1px;
    font-family: "forma-djr-display", sans-serif;
     font-size: 1.4rem; 
    font-weight: bold;
    font-style: normal;
        overflow-x: hidden;
    font-weight: 500;
    font-style: italic;
    text-shadow: 3px 3px 5px white, -3px -3px 5px white, 3px -3px 5px white, -3px 3px 5px white;
     line-height: 1;
      letter-spacing: 1.3px;
      padding: 10px;
}


.question-button[open] .question-text {
    display: block;
}

.question-button:hover {
    background-color: blue; 
    color: white; 
    border-color: blue; 
}


.question-button, .email-button {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}


.bw-toggle-label {
    position: fixed;
    bottom: 35px;
    right: 53px;
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid blue;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    
}


.bw-toggle-label:hover {
    background-color: blue;
    border-color: blue;
}

.bw-toggle-label::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 50%;
    display: block;
    transition: background-color 0.3s ease;

}

.bw-toggle-label:hover::after {
    background-color: white;
}

.bw-toggle {
    display: none;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.8);
    }
}

.bw-toggle-label::after {
    content: "";
    width: 10px;
    height: 10px;
    background-color: blue;
    border-radius: 50%;
    display: block;
    transition: background-color 0.3s ease;
    animation: pulse-dot 2s infinite ease-in-out;
}



body {
    transition: filter 1.4s ease-in-out;
    filter: grayscale(500%) contrast(700%) brightness(73%) ;
   
}

body:has(.bw-toggle:checked) {
    filter: none;
}



html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: "forma-djr-display", sans-serif;
    font-weight: 500;
    font-style: italic;
    background-color: #e1fae0;
    background-image: linear-gradient(#839df3 2.2px, transparent 2.2px), linear-gradient(to right, #839df3 2.2px, #e1fae0 2.2px);
    background-size: 44px 44px;

  
}


.container {
    position: relative;
    width: 100%;
    min-height: 300vh; 
    padding-bottom: 300px; 
    padding-top: 150px; 
}



.sticker {
    position: absolute;
    top: calc(90vh * var(--top)); 
    left: calc(90vw * var(--left)); 
    transform: scale(var(--scale)); 
    z-index: 10; 
    opacity: 0; 
    animation: fadeInAndGrow 1.5s ease-out forwards; 
    transition: z-index 0.3s ease, transform 0.3s ease;
}

@keyframes fadeInAndGrow {
    0% {
        opacity: 0;
        transform: scale(0.5); 
    }
    100% {
        opacity: 1;
        transform: scale(var(--scale)); 
    }
}

.sticker img {
    max-width: 300px;
    filter: grayscale(100%) contrast(150%) brightness(100%) sepia(100%) hue-rotate(10deg) saturate(1700%) invert(100%) drop-shadow(0 0 10px rgba(0, 0, 255, 0.5));
    opacity: 0.9;
    transition: transform 0.8s ease, filter 0.6s ease, opacity 0.6s ease;
}


.sticker img:hover {
    transform: scale(1.1);
    filter: none; 
    opacity: 1;
  filter: drop-shadow(0 0 50px rgba(255, 255, 255, 1.7));

}


.sticker p {
    display: none;
    font-size: 1rem; 
    font-style: italic;
    color: blue; 
    text-align: center;
    margin: 5px 0;
    padding: 0px; 
     text-shadow: 3px 3px 5px white, -3px -3px 5px white, 3px -3px 5px white, -3px 3px 5px white;
     line-height: 0.8;
      letter-spacing: 1.3px;

}


.sticker:hover {
    z-index: 10000;
    transform: scale(2.5);
}

.sticker:hover p {
    display: block;
}


.sticker:nth-child(1) { --top: -0.1; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(2) { --top: -0; --left: 0.15; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(3) { --top: 0.4; --left: 0.4; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(4) { --top: 0.2; --left: 0.7; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(5) { --top: 0.1; --left: 0.4; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(6) { --top: 0.7; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(7) { --top: 0.8; --left: 0.3; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(8) { --top: 0.7; --left: 0.1; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(9) { --top: 1.05; --left: 0.4; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(10) { --top: 1.2; --left: 0.6; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(11) { --top: 1.5; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(12) { --top: 1.8; --left: 0.05; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(13) { --top: 1; --left: 0.2; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(14) { --top: 1.8; --left: 0.5; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(15) { --top: 0.9; --left: 0.7; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(16) { --top: 2.0; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(17) { --top: 2.25; --left: 0.6; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(18) { --top: 2.2; --left: 0.25; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(19) { --top: 2.55; --left: 0.4; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(20) { --top: 2.7; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(21) { --top: 2.8; --left: 0.15; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(22) { --top: 3.2; --left: 0.5; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(23) { --top: 3.4; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(24) { --top: 3.6; --left: 0.1; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(25) { --top: 3.8; --left: 0.3; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(26) { --top: 3.9; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(27) { --top: 4.3; --left: 0.4; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(28) { --top: 4.6; --left: 0.6; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(29) { --top: 5.1; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(30) { --top: 4.8; --left: 0.2; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(31) { --top: 5.3; --left: 0.5; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(32) { --top: 5.6; --left: 0.1; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(33) { --top: 5.6; --left: 0.8; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(34) { --top: 5.8; --left: 0.3; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(35) { --top: 6.0; --left: 0.45; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(36) { --top: 6.3; --left: 0.05; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(37) { --top: 6.3; --left: 0.5; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(38) { --top: 6.7; --left: 0.2; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(39) { --top: 6.7; --left: 0.6; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(40) { --top: 6.7; --left: 0.5; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(41) { --top: 7.2; --left: 0.1; --scale: 1.3; --z-index: 2; }
.sticker:nth-child(42) { --top: 7.1; --left: 0.4; --scale: 1.3; --z-index: 2; }







