@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Orbitron';
    src: url('fonts/Orbitron-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    position: relative;
}

svg {
    width: 100%;
    max-width: 800px;
    height: auto;
}

.letter {
    font-family: 'Orbitron', sans-serif;
    font-size: 5em;
    fill: #333;
    opacity: 0;
}

.n {
    animation: moveN 5s forwards;
}

.T {
    animation: moveT 5s forwards;
}

.e {
    animation: moveE 5s forwards;
}

.c {
    animation: moveC 5s forwards;
}

@keyframes moveN {
    0% {
        transform: translate(-100vw, -100vh) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-150px, 0) scale(1);
        opacity: 1;
    }
}

@keyframes moveT {
    0% {
        transform: translate(100vw, -100vh) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(-50px, 0) scale(1);
        opacity: 1;
    }
}

@keyframes moveE {
    0% {
        transform: translate(-100vw, 100vh) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(50px, 0) scale(1);
        opacity: 1;
    }
}

@keyframes moveC {
    0% {
        transform: translate(100vw, 100vh) scale(0);
        opacity: 0;
    }
    100% {
        transform: translate(150px, 0) scale(1);
        opacity: 1;
    }
}

h1 {
    font-size: 2.5em;
    color: #333;
}

p {
    font-size: 1.2em;
    color: #666;
    margin: 20px 0;
}

form {
    margin-top: 20px;
}

input[type="email"] {
    padding: 10px;
    font-size: 1em;
    width: 80%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .letter {
        font-size: 2.5em;
    }

    @keyframes moveN {
        0% {
            transform: translate(-100vw, -100vh) scale(0);
            opacity: 0;
        }
        100% {
            transform: translate(-75px, 0) scale(1);
            opacity: 1;
        }
    }

    @keyframes moveT {
        0% {
            transform: translate(100vw, -100vh) scale(0);
            opacity: 0;
        }
        100% {
            transform: translate(-25px, 0) scale(1);
            opacity: 1;
        }
    }

    @keyframes moveE {
        0% {
            transform: translate(-100vw, 100vh) scale(0);
            opacity: 0;
        }
        100% {
            transform: translate(25px, 0) scale(1);
            opacity: 1;
        }
    }

    @keyframes moveC {
        0% {
            transform: translate(100vw, 100vh) scale(0);
            opacity: 0;
        }
        100% {
            transform: translate(75px, 0) scale(1);
            opacity: 1;
        }
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
}
