
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}


/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Set a minimum height to ensure the footer stays at the bottom */
}

header {
    background-color: rgb(12, 85, 69);
    color: #fff;
    padding: 1em;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.page{
    margin:auto;
    max-width: 1200px;
}

section {
    flex: 1; /* Allow the content area to grow and push the footer to the bottom */
    padding: 50px;
    border-radius: 0 0 20px 20px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
}
footer a{
    color:#fff;
    font-weight: bold;
}


.container {
    display: flex;
    gap:15px;
    flex-wrap: wrap;
    justify-content:center;
}

.card{
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.card-title{
    border-radius: 8px 8px 0 0;
    color: #fff;
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
    font-size: 14pt;
    background-color: rgb(12, 85, 69);
    padding: 20px;
}

.card-content{
    padding: 20px;
}


.pw-container{
    display: flex;
    gap:10px;
    align-items: center;
}

/* .pw-container button{
    height: 30px;

} */

.pw-container input {
    width: 300px;
    font-size: 18px;
    padding: 10px;
}

.pw-container button {
    font-size: 16px;
    padding: 10px;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid black;
}

#marbles{    
    width: 500px;
    border-radius: 20px;
}