/* Global Font and Background Styles */
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:wght@700&family=Open+Sans:wght@400;600&display=swap");

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    background-image: radial-gradient(#444444 1px, transparent 1px);
    background-size: 4px 4px;
    color: #ffffff;
    line-height: 1.6;
}

header {
    text-align: center;
    padding: 30px 20px;
    background-color: #1c1c1e;
}

header h1 {
    font-family: "Libre Baskerville", serif;
    font-size: 3rem;
    color: #00ffff;
}

nav a {
    text-decoration: none;
    color: #00ffff;
    margin: 0 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #007fff;
    text-decoration: underline;
}

main {
    padding: 20px;
    text-align: center;
    background-color: #000000;
    background-image: radial-gradient(#444444 1px, transparent 1px); /* Matches the body's gradient */
    background-size: 4px 4px;
}

img {
    display: block; /* Centers the image */
    margin: 20px auto; /* Centers the image horizontally */
    max-width: 100%; /* Scales image responsively */
    height: auto; /* Maintains aspect ratio */
    border: none; /* Ensures no unwanted borders */
    background: transparent; /* Prevents any background interference */
    border-radius: 0; /* Removes rounded corners */
}

.contact-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00ffff;
    color: #000000;
    border: 2px solid transparent;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

contact-button:hover {
    background-color: #007fff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

footer {
    margin-top: 20px;
    text-align: center;
    padding: 10px 0;
    background: #1c1c1e;
}

footer nav a {
    margin: 0 15px;
    color: #00ffff;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}