/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #007BFF, #00A4FF);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container */
.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    text-align: center;
    padding: 30px;
}

/* Header Styling */
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #007BFF;
}

/* Textarea Styling */
textarea {
    width: 100%;
    height: 150px;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin: 15px 0;
    font-family: 'Roboto', monospace;
    background: #f9f9f9;
    resize: none;
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* Buttons */
.actions {
    margin: 20px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn.primary {
    background: #007BFF;
    color: #fff;
}

.btn.secondary {
    background: #00A4FF;
    color: #fff;
}

.btn:hover {
    transform: scale(1.05);
}

.btn:active {
    transform: scale(0.95);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: #007BFF;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}
