body {
    font-family: 'Roboto Mono', monospace; 
    line-height: 1.6;
    margin: 20px;
    background-color: #1d1d1d; 
    color: #e0e0e0; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}

h1, h2 {
    color: #00FF00; 
}

.container {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.8); 
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3); 
    margin-top: 10px;
}

.section {
    margin-bottom: 20px;
}

.header-banner {
    background-color: #2c3e50; 
    color: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3); 
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-banner h1 {
    margin: 0;
    font-size: 2.5em; 
}

.header-banner p {
    font-size: 1.2em;
    margin: 10px 0;
}

.header-banner img {
    margin-top: 15px;
    border-radius: 10px;
}

.footer-banner {
    background-color: #2c3e50; 
    color: white;
    padding: 20px 20px; 
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3); 
    margin-top: 20px;
    width: 100%;
    max-width: 800px; 
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.footer-banner h2 {
    margin: 0;
    font-size: 1.5em;
    color: #00FF00; 
}

.footer-banner img {
    margin-top: 15px; 
    border-radius: 10px;
    max-width: 250px;
}

.footer-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-banner-left {
    flex: 1;
    text-align: center;
}

.footer-banner-right {
    flex: 1;
    text-align: left; 
    max-width: 380px;
    margin-left: 20px;
}

.footer-banner-left img {
    max-width: 100%; 
    margin-top: 20px;
}

.footer-banner-right h2 {
    color: #00FF00;
    text-align: left;
}

.footer-banner-right label {
    display: block;
    color: #e0e0e0;
    margin-bottom: 5px;
}

.footer-banner-right input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #00FF00;
    background-color: #333;
    color: #e0e0e0;
    border-radius: 4px;
}

.footer-banner-right button {
    width: 100%;
    padding: 10px;
    background-color: #00FF00;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 1.2em;
    cursor: pointer;
}

.footer-banner-right button:hover {
    background-color: #32CD32;
}
