body {
    font-family: 'Cinzel', serif;
    background-image: url("images/table.png");
    background-size: cover;
    font-weight: bold;
    color: white;
    text-align: center;
}

h1 {
    color: goldenrod;
}

#message-el {
    font-style: italic;
}

button {
    color: #016f32;
    width: 150px;
    background: goldenrod;
    padding-top: 5px;
    padding-bottom: 5px;
    font-weight: bold;
    border: none;
    border-radius: 2px;
    margin-bottom: 2px;
    margin-top: 2px;
}

.welcome-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.welcome-page p {
    font-size: 24px;
    margin-bottom: 20px;
}

#name-input {
    width: 250px;
    padding: 12px;
    font-size: 18px;
    border: 2px solid goldenrod;
    border-radius: 5px;
    margin-bottom: 20px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-family: 'Bebas Neue', sans-serif;
}

#name-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.game-page {
    padding-top: 20px;
}