body {
    font-family: 'Arial', sans-serif;
    background-color: #282c34;
    color: white; 
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#box1 {
    text-align: center;
    background-color: #3c4049;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); 
    border-radius: 35px;
    
}

h1 {
    color: #ff6a00; 
}

input[type="text"] {
    border: 1px solid #555;
    background-color: #484c55; 
    color: white; 
    border-radius: 4px;
    padding: 8px;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease; 
    width: 200px;
}



/* button {
    background-color: #282c34;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #ff6a00; 
} */

.animated-button {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    border: none;
    font-size: 16px;
    background-color: inherit;
    border-radius: 100px;
    font-weight: 600;
    color: #ffffff40;
    box-shadow: 0 0 0 2px #ffffff20;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .animated-button span:last-child {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: #ff6a00;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .animated-button span:first-child {
    position: relative;
    z-index: 1;
  }
  
  .animated-button:hover {
    box-shadow: 0 0 0 5px #ff6a00;
    color: #ffffff;
  }
  
  .animated-button:active {
    scale: 0.95;
  }
  
  .animated-button:hover span:last-child {
    width: 150px;
    height: 150px;
    opacity: 1;
  }
  
  
  

.hinweis {
    position: relative; 
    background-color: #282c34;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.hinweis::after {
    content: attr(data-hint);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    position: absolute;
    left: 100%; 
    top: 50%;
    transform: translate(0, -50%);
    white-space: nowrap;
    z-index: 1;
    border-radius: 4px;
    margin-left: 5px; 
    display: block; 
    min-width: 100px; 
    text-align: center;
    opacity: 0; 
    transition: opacity 0.5s ease;
}

.hinweis:hover::after {
    opacity: 1; 
}

#gewinnerPopup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3c4049; 
    color: white; 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    text-align: center;
    z-index: 1000;
    width: 80%; 
    max-width: 400px; 
}

#gewinnerPopup p {
    margin: 10px 0; 
    font-size: 1.2em; 
    line-height: 1.4; 
}

#gewinnerPopup p:first-child {
    color: #ff6a00;
    font-weight: bold;
    font-size: 1.4em;
}


