
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    text-align: center;
    padding: 50px;
}

.logo {

    width: 200px; /* Adjust width as needed */
    height: auto; /* Keeps the aspect ratio */
    display: block;
    margin: 20px auto; /* Centers the logo */
    
    
}
.container {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    box-shadow: 0px 0px 15px rgba(255, 0, 0, 0.8);
}
h2 {
    color: red;
}
input, select, button {
    width: 90%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}
input {
    background: #222;
    color: white;
}
select {
    background: #333;
    color: white;
}
button {
    background-color: red;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: orange;
}
#output-container {
    margin-top: 15px;
    background: black;
    padding: 15px;
    border-radius: 5px;
    color: #ffcc00;
    font-size: 16px;
    font-weight: bold;
    min-height: 50px;
    text-align: left;
    display: block;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.output-header {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 5px;
    font-size: 18px;
    color: white;
    font-weight: bold;
}
.copy-btn {
    margin-top: 10px;
    background-color: gray;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    width: 100%;
}
.copy-btn:hover {
    background-color: #ffcc00;
    color: black;
}

footer {
    background-color: #11111100;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 120px;
}

.footer-info p {
    margin: 5px 0;
}

.footer-info a {
    color: #f39c12;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-copy {
    margin-top: 10px;
    opacity: 0.8;
}
