@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Playwrite+NO:wght@100..400&display=swap');

body {
        font-family: 'Nunito', sans-serif;
        background: url(kaffebild.png) #150b07;
        background-size: cover;
        background-position: bottom;
        background-repeat: no-repeat;
        color: #fff;
        font-weight: 400;
        text-align: center;
        padding: 2rem;
        @media (min-width: 768px) {
              height: 100vh;
              padding: 0;
              }
        }

        h1 {
              font-size: 2.5rem;
              margin-bottom: 3rem;
              font-weight: 400;
              font-family: playwrite no, cursive;
              text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #ff7300, 0 0 82px #ff7300, 0 0 92px #ff7300, 0 0 102px #ff7300, 0 0 151px #ff7300;
              transform: rotate(-10deg); 
              position: relative;
              left: -10px;
              @media (min-width: 768px) {
                     left: 0px;
              }
       }

        h3 {
              font-weight: 700;
              text-transform: uppercase;
              letter-spacing: 2px;
              font-size: 0.9rem
        }

        .calendar {
              display: grid;
              grid-template-columns: 1fr 1fr 1fr;
              gap: 1rem;
              max-width: 600px;
              margin: 0 auto;
              @media (min-width: 480px) {
                     grid-template-columns: repeat(4, 1fr);
              }
              
              /* @media (min-width: 768px) {
                     grid-template-columns: repeat(5, 1fr);
              } */
              
              
              @media (min-width: 1024px) {
                     grid-template-columns: repeat(6, 1fr);
              }
        }

        .door {
        background-color: rgba(0,0,0,0.3);
        border: 1px solid #f5f5f5;
        font-family: 'Playwrite NO', cursive;
        border-radius: 2px;
        font-weight: 400;
        padding: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
              @media (min-width: 420px) {
                     padding: 2rem;
              }
        }

        .door:hover {
        background-color: #rgba(0,0,0,0.6);
        }

        .popup {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background-color: rgba(0,0,0,0.5);
        justify-content: center;
        align-items: center;
        }

        .popup-content {
              background-color: #150b07;
              padding: 2rem;
              border-radius: 2px;
              max-width: 400px;
              text-align: left;
              position: relative;
              line-height: 1.4;
              height: 90dvh;
              overflow-y: auto;
              h1 {
                     left: 0;
                     text-align: center;
                     transform: rotate(0deg);
                     text-shadow: 0 0 7px #fff, 0 0 10px #fff, 0 0 21px #fff, 0 0 42px #ff7300, 0 0 82px #ff7300, 0 0 92px #ff7300, 0 0 102px #ff7300, 0 0 151px #ff7300;
              }
        }

        .close {
        position: absolute;
        top: 10px; right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        }

.popup-content::-webkit-scrollbar {
  width: 5px;
}

.popup-content::-webkit-scrollbar-track {
  background: #180807;
}

.popup-content::-webkit-scrollbar-thumb {
  background: #221211;
}

.popup-content::-webkit-scrollbar-thumb:hover {
  background: #221211;
}