/* Default styles for all screen sizes */
body {
    font-family: "Courier New", monospace; /* Use monospace font */
    font-size: 16px; /* Base font size */
}

.email-button {
    background-color: #00ff00; /* Green button */
    color: #000000; /* Black text */
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.2rem; /* Increase font size for accessibility */
    margin: 4px 2px;
    cursor: pointer;
    border: 2px solid #00ff00; /* Green border */
    box-sizing: border-box; /* Include padding and borders in element's total width and height */
}

.email-button:hover {
    background-color: #009900; /* Darker green color on hover */
    transition: background-color 0.5s ease;
}

.pgp-key {
    background-color: #000000; /* Black background for the PGP key */
    padding: 12px;
    font-family: monospace;
    color: #00ff00; /* Green text */
    border: 2px solid #00ff00; /* Green border */
    box-sizing: border-box; /* Include padding and borders in element's total width and height */
}

.download-button {
    background-color: blue;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

.download-button:hover {
    background-color: #003399; /* Darker blue color on hover */
    transition: background-color 0.5s ease;
}
.data{
    background-color: black;
}

.data p, h1, h2{
    color: white;
    text-align: justify;
}
/* Media query for screens smaller than 600px wide */
@media only screen and (max-width: 600px) {
    body {
        font-size: 14px; /* Reduce font size for smaller screens */
    }
    .email-button {
        padding: 8px 16px; /* Reduce button padding for smaller screens */
        font-size: 1rem; /* Reduce font size for smaller screens */
    }
    .pgp-key {
        padding: 8px; /* Reduce PGP key padding for smaller screens */
    }
}

/* Media query for screens smaller than 375px wide */
@media only screen and (max-width: 375px) {
    body {
        font-size: 12px; /* Reduce font size for smaller screens */
    }
    .email-button {
        padding: 6px 12px; /* Reduce button padding for smaller screens */
        font-size: 0.8rem; /* Reduce font size for smaller screens */
    }
    .pgp-key {
        padding: 6px; /* Reduce PGP key padding for smaller screens */
    }
}

