body {
    margin: 0;
    font-family: "Epunda Sans", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    position: relative;
}



/* Background with code-like environment */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('icode_bg.png'); /* Example image of code environment */
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.8;
    animation: pulse 10s infinite alternate;
}

/* Optional: animated code-like effect (like blinking cursor, falling code, etc.) */
/* Example: Adding blinking cursor at the bottom */
@keyframes pulse {
    from { filter: brightness(0.8); }
    to { filter: brightness(1); }
}

.content {
    padding: 50px;
    text-align: center;
    z-index: 1;
}

/* Style your other elements as needed */
h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #fff;
}
p {
    font-size: 1.2em;
    color: #fff;
}

a {
    color: #F7941D;
    text-decoration: none;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.subscribe {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.subscribe input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 200px;
}
.subscribe button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    cursor: pointer;
}
