* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background-color: #000 !important;
}

.hero {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: flex-start; /* drop content down a bit */
    justify-content: center;
    padding-top: 2rem; /* added padding to move title down */
}

.hero img {
    max-width: 60vw;
    max-height: 90vh;
    width: auto;
    height: 90vh;
    object-fit: contain;
    display: block;
}

.contact-info {
    font-family: 'Courier New', Courier, monospace;
    color: #fff;
    background: rgba(0,0,0,0.7);
    padding: 2rem;
    margin-left: 2rem;
    border-radius: 10px;
    min-width: 250px;
    max-width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-info h1 {
    margin-top: 1rem; /* drop title down further */
    margin-bottom: 0.1em;
}

.news {
    margin-top: 0rem;
    font-size: 1rem;
    line-height: 1.5;
}

.news p {
    padding: 0.5em 0;
}

.news strong {
    font-size: 1.1em;
}

.news blockquote {
    margin: 1em 0 0 0;
    padding-left: 1em;
    border-left: 3px solid #fff;
    font-style: italic;
    color: #ccc;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem; /* also adjust for mobile */
    }
    .hero img {
        max-width: 80vw;
        max-height: 60vh;
        width: auto;
        height: auto;
        margin-left: 0;
        margin-top: 2rem;
    }
    .contact-info {
        max-width: 90vw;
        margin-left: 0;
        margin-top: 2rem;
    }
}

a {
    color: #f30505;
    font-family: 'Courier New', Courier, monospace;
    text-decoration: none; /* removes underline */
}

a:hover {
    text-decoration: underline; /* optional hover effect */
}
