@font-face {
    font-family: 'Chisel Mark';
    src: url('chisel-mark.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Chisel Mark', sans-serif;
    display: flex;
    flex-direction: column; /* Ensure column layout */
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    margin: 20px;
}

.center-image {
    max-width: 600px; /* Set maximum width */
    max-height: 600px; /* Set maximum height */
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.contact-info {
    margin-top: 30px;
}

.contact-info h1 {
    margin: 0;
    font-size: 2.5em;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.5em;
}

.contact-info a {
    color: #007BFF;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.at-symbol {
    font-family: 'Roboto', sans-serif;
}

footer {
    text-align: center;
    padding: 10px;
    font-size: 0.9em;
    color: #666;
    width: 100%; /* Ensure footer takes full width */
    box-sizing: border-box; /* Include padding in width calculation */
    position: relative; /* Ensure footer is positioned correctly */
    clear: both; /* Clear any floats */
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .contact-info h1 {
        font-size: 2em;
    }

    .contact-info p {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .contact-info h1 {
        font-size: 1.5em;
    }

    .contact-info p {
        font-size: 1em;
    }
}