* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #181818;
    overflow: hidden;
}

.landing-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
}

.title {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.2);
    letter-spacing: 2px;
}

.interactive-area {
    width: 300px;
    height: 300px;
    margin-top: 50px;
    border: 4px solid white;
    position: relative;
    background-image: url('https://nextshark.b-cdn.net/wp-content/uploads/2018/01/tumblr_ozth0ga3EL1qze3hdo1_r1_500.gif'); /* Add your lo-fi pixel art gif */
    background-size: cover;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
