
body {
    margin: 0;
    font-family: 'Baloo 2', cursive;
    background: linear-gradient(135deg, #e17ea7, #fbb266);
    color: white;
    text-align: center;
    height: 100vh; /* Gør body til at fylde hele skærmen */
    min-height: 100vh; /* Sikrer at baggrunden dækker hele skærmen */
  }
  
  header {
    position: relative;
    padding-top: 40px;
  }
  
  nav {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  nav button {
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    color: #2e2e2e;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
  }
  
  h1 {
    font-size: 60px;
    margin-top: 80px;
    font-family: 'Baloo';
  }
  
  main {
    padding: 40px 20px;
  }
  
  .cravings {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
  
  figure {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
  }

  .cravings figure {
    width: 200px; /* Større cirkler */
    height: 200px; /* Større cirkler */
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
}
  
  figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .next-button {
    padding: 15px 40px;
    font-size: 24px;
    font-family: 'Baloo 2', cursive;
    background: white;
    color: #44221b;
    border: none;
    border-radius: 15px;
    cursor: pointer;
  }
  
  /* Popup styling */
  #popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup-content {
    background: white;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    max-width: 80%;
    text-align: center;
    font-size: 20px;
  }
  
  .popup-content button {
    margin-top: 20px;
    font-family: 'Baloo 2', cursive;
    padding: 10px 20px;
    border: none;
    background: #f88aaf;
    color: white;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }

  /* ... behold alt andet fra før ... */

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup-content {
    background: white;
    color: #333;
    padding: 40px;
    border-radius: 15px;
    max-width: 80%;
    text-align: center;
    font-size: 20px;
    position: relative;
  }
  
  .popup-content button.close-button {
    margin-top: 20px;
    font-family: 'Baloo 2', cursive;
    padding: 10px 20px;
    border: none;
    background: #f88aaf;
    color: white;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .hidden {
    display: none;
  }
  
  .popup-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem; /* afstand mellem emoji og tekst */
  }
  
  .popup-content p {
    margin: 0;
    text-align: left;
    font-size: 1.2rem;
  }
  
  .emoji-inline {
    font-size: 4rem; /* større emoji med rem-enhed */
    flex-shrink: 0;
    line-height: 1;
  }
  
  .button-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: background-color 0.2s ease;
  }
  
  .button-link:hover {
    background-color: #ffffff;
  }
  