body {
    background-image: url('Designer.png'); /* Replace 'background.jpg' with your image's filename */
    background-size: cover; /* Makes the image cover the whole screen */
    background-position: center; /* Centers the image */
    background-attachment: fixed; /* Keeps the background image fixed while scrolling */
    background-repeat: no-repeat; /* Ensures the image doesn’t repeat */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


h1 {
    font-size: 3.5em;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 40px;
    color: #ffffff;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

label {
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-top: 20px;
}

/* Shared style for input and select */
input, select {
    font-size: 1.2rem;
    padding: 12px;
    width: 300px;
    border: none;
    border-radius: 60px;
    background-color: #ffffff;
    color: #000000;
    box-sizing: border-box;
    
}

/* Special styling for select dropdown */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='red' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px; /* make room for the arrow */
    cursor: pointer;
}


button {
    font-size: 1.2rem;
    padding: 12px 24px;
    background-color: #e41c24; /* NASA Red */
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c0181f;
}

#output {
    margin-top: 100px; /* 👈 moves the black box down */
    background-color: #1a1a2e;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ffffff55;
}

#output h2 {
    color: #e41c24;
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
}

p {
    font-size: 1.2rem;
    margin: 10px 0;
}
