.fancy-font-generator {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.fancy-font-generator h1, .fancy-font-generator h2 {
    color: #2c3e50;
    text-align: center;
}

.subtitle {
    text-align: center;
    font-style: italic;
    color: #36b0b0;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.download-btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    text-align: center;
}



.text-input-section textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    resize: vertical;
    font-size: 16px;
}

.style-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.style-buttons button {
    padding: 8px 15px;
    background-color: #c1121f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.style-buttons button:hover {
    background-color: #2980b9;
}

.output-text {
    min-height: 100px;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    margin: 20px 0;
    font-size: 24px;
    word-wrap: break-word;
}

.copy-btn {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-btn:hover {
    background-color: #27ae60;
}

.new-fonts {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}