JSFiddle - React, Tailwind, and code Playground

by velo_ninja

HTML

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Page Not Available</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            height: 100vh;
            background: linear-gradient(135deg, #e0eafc, #cfdef3);
            color: #333;
        }
        .container {
            width: 90%;
            height: 90%;
            overflow: hidden;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 16px;
        }
        #section1 {
            height: 15%;
            background: white;
        }
        #section1 img {
            max-width: 250px;
            max-height: 250px;
            border-radius: 50%;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        #section2 {
            height: 65%;
            text-align: center;
            padding: 1rem 2rem;
        }
        #section2 .emoji {
            font-size: 4rem;
            margin-bottom: 1rem;
        }
        #section2 h1 {
            font-size: 2.5rem;
            color: #5a67d8;
            margin-bottom: 1rem;
        }
        #section2 p {
            font-size: 1.2rem;
            color: #555;
        }
        #section3 {
            height: 20%;
            background: #f2f5f9;
            border-top: 1px solid #e0e0e0;
            padding: 1rem;
        }
        #section3 p {
            font-size: 1rem;
            color: #666;
        }
    </style>
</head>
<body>
    <div class="container" id="mainContainer">
        <div id="section1">
            <img src="{{ url_for('static', filename='sys_ICONS/logo.png') }}" alt="Server Logo">
        </div>
        <div...