Deepsite
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
color: #ffffff;
font-family: 'Roboto', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
padding: 20px;
}
.container {
width: 100%;
max-width: 600px;
background: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 12px;
box-shadow: 0 0 20px rgba(0,0,0,0.3);
backdrop-filter: blur(10px);
}
header h1 {
font-family: 'Orbitron', sans-serif;
font-size: 2.5rem;
margin-bottom: 10px;
color: #00ffd5;
}
header p {
font-size: 1rem;
color: #b0b0b0;
margin-bottom: 20px;
}
.tool-section {
margin-top: 20px;
}
input[type="text"] {
width: 80%;
padding: 12px;
border-radius: 6px;
border: none;
font-size: 1rem;
outline: none;
margin-bottom: 10px;
}
button {
background-color: #00ffd5;
color: #000;
border: none;
padding: 12px 20px;
font-size: 1rem;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
button:hover {
background-color: #00c0a3;
}
.result-box {
margin-top: 20px;
background: rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 10px;
min-height: 100px;
}
footer {
margin-top: 30px;
font-size: 0.85rem;
color: #aaa;
}
function handleSubmit() {
const input = document.getElementById("inputText").value.trim();
const resultBox = document.getElementById("result");
if (!input) {
resultBox.innerHTML = "
Please enter something to analyze.
";
return;
}
// Example feature: reverse the input text
const output = `AI says: ${input.split("").reverse().join("")}`;
resultBox.innerHTML = `
${output}
`;
}