/* Introduction Page Styles */
body {
    font-family: 'Quicksand', sans-serif;
    font-size: medium;
    margin: 0;
    padding: 0;
    background: #a3d3e6;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

p {
    font-size: 1.5rem; /* Ändere die Größe nach Belieben */
    line-height: 1.6;
    color: white;
}

/* Container */
.container {
    max-width: 800px;
    padding: 20px;
}

/* Buttons */
.button {
    background: #fff5be;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    background: #3B82F6;
}

.intro-btn {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #fff;
    color: #000;
    font-weight: bold;
    text-align: center;
    padding: 12px 32px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
    z-index: 100;
}

.intro-btn:hover {
    background: #f0f0f0;
    color: #222;
}

h1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #a3d3e6;
    color: #ffffff;
    font-family: 'Quicksand', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    margin: 0;
    z-index: 100;
}

#playerName {
    width: 80%;
    max-width: 400px;
    font-size: 1.3rem;
    padding: 12px 16px;
    border-radius: 18px;
    border: 2px solid #ccc;
    margin: 16px 0;
    font-family: 'Quicksand', Arial, sans-serif;
    box-sizing: border-box;
}

#access_code {
    width: 80%;
    max-width: 400px;
    font-size: 1.3rem;
    padding: 12px 16px;
    border-radius: 18px;
    border: 2px solid #ccc;
    margin: 16px 0;
    font-family: 'Quicksand', Arial, sans-serif;
    box-sizing: border-box;
}

button[onclick="saveName()"] {
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 18px;
    background: #fff;
    color: #000;
    border: 2px solid #222;
    cursor: pointer;
    font-family: 'Quicksand', Arial, sans-serif;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}

button[onclick="saveName()"]:hover {
    background: #f0f0f0;
    color: #222;
}
