/* style.css */

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #000428, #004e92);
    color: #ffffff;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

header {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin: 0;
    color: #00c6ff;
    text-shadow: 2px 2px 10px rgba(0, 198, 255, 0.5);
}

main {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

label {
    font-size: 1.2em;
}

textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #00c6ff;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1em;
}

button {
    background: #00c6ff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2em;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #005f8d;
}

h2 {
    font-size: 1.8em;
    margin-top: 20px;
}

iframe {
    width: 100%;
    height: 400px;
    border: 1px solid #00c6ff;
    border-radius: 5px;
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    button {
        font-size: 1em;
    }

    iframe {
        height: 300px;
    }
}