body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #FFFFFF;
}

header {
    background-color: #0E0E0E;
    padding: 10px 30px 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    color: #86c232;
    font-size: 3rem !important;
}

header h1 {
    margin: 0;
    font-size: 1.5rem;
}


nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    display: inline-block;
    line-height: 1;
}

nav ul li a:hover {
    color: #86c232;
}

main {
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 220px);
}

article {
    background-color: #1E1E1E;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0px 0px 30px #86c232;
    text-align: center;
}

article h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

article p {
    margin-bottom: 1rem;
    color: #AAAAAA;
}

 button, input[type=submit] {
    background-color: #86c232;
    color: #121212;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0px 5px 0px 5px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover, input:hover[type=submit] {
    background-color: #6a9929;
}

article #noButton {
    background-color: #2c2d31 !important;
    color: white;
}

article #noButton:hover {
    background-color: #27282b !important;
    color: white;
}

footer {
    background-color: #0E0E0E;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}