* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace; /* Typewriter font */
    color: white;
}

.container {
    text-align: center;
}

.btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 24px;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px white; /* Glow effect */
}

.btn:hover {
    border-color: green;
    box-shadow: 0 0 20px green; /* Glow on hover */
}

.btn:not(:last-child) {
    margin-bottom: 20px; /* Space between buttons */
}
