/* Critical CSS for better performance */
body {
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: auto;
    font-size: 16px;
    font-family: "Press Start 2P", monospace, sans-serif;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
    margin: 0;
}

h1 {
    color: #FFA500;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.clickable {
    color: #01FFFF;
    border: 1px solid #01FFFF;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
}

.contact-link {
    color: #aa52ed;
    text-decoration: none;
    font-weight: bold;
}

/* Mobile Devices */
@media only screen and (max-width: 600px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.5rem; /* increased font size for mobile */
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

/* Tablets and larger screens */
@media only screen and (min-width: 601px) {
    body {
        font-size: 16px; /* reset font size for larger screens */
    }

    h1 {
        font-size: 2rem; /* reset font size for larger screens */
        margin-bottom: 1rem;
    }

    p {
        font-size: 1rem; /* reset font size for larger screens */
        margin-bottom: 1rem;
    }
}