@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    background-color: black;
    color: #00ff00;
    font-family: 'VT323', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.terminal-container {
    width: 450px;
    background: #0d0d0d;
    border: 2px solid #00ff00;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 0 15px #00ff00;
}

.terminal-header {
    background: #222;
    padding: 10px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #00ff00;
}

.terminal-header .red,
.terminal-header .yellow,
.terminal-header .green {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.title {
    margin-left: auto;
    margin-right: auto;
    font-weight: bold;
    color: #00ff00;
}

.terminal-body {
    padding: 20px;
    position: relative;
}

.logo {
    width: 120px;
    margin-bottom: 10px;
    animation: glitch 1s infinite;
}

.command-line {
    font-size: 18px;
    color: #00ff00;
}

.cursor {
    animation: blink 1s infinite;
}

.text {
    font-size: 16px;
    text-shadow: 0px 0px 10px #00ff00;
    animation: flicker 1.5s infinite alternate;
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes flicker {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes glitch {
    0% { transform: translateX(0); }
    20% { transform: translateX(2px); }
    40% { transform: translateX(-2px); }
    60% { transform: translateX(1px); }
    80% { transform: translateX(-1px); }
    100% { transform: translateX(0); }
}

.terminal-footer {
    background: #222;
    padding: 10px;
    font-size: 14px;
    border-top: 2px solid #00ff00;
}

.author {
    color: #ff0000;
}