humanizerplus2.0 / style.css
khaliqabdull's picture
Upload 9 files
6583a12 verified
body {
background-color: #0d0d0d;
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 0;
color: #00ffcc;
}
.container {
max-width: 800px;
margin: 50px auto;
text-align: center;
padding: 30px;
background: #1a1a1a;
box-shadow: 0 0 20px #00ffcc;
border-radius: 10px;
}
h1 {
font-size: 2.8rem;
margin-bottom: 10px;
color: #00ffff;
}
.subtitle {
font-size: 1.1rem;
margin-bottom: 20px;
color: #66ffe0;
}
textarea {
width: 100%;
height: 120px;
padding: 15px;
font-size: 1rem;
margin-bottom: 20px;
border-radius: 8px;
background-color: #0f0f0f;
border: 1px solid #00ffcc;
color: #00ffcc;
resize: vertical;
}
button {
padding: 12px 25px;
font-size: 1rem;
background-color: #00ffcc;
color: #000;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #00e6b8;
}
footer {
margin-top: 30px;
font-size: 0.9rem;
color: #ccc;
}
.links a {
color: #66ffe0;
margin: 0 10px;
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}