@font-face {
    font-family: 'Inter Regular';
    src: url('assets/fonts/Inter-Regular.ttf') format('truetype'),
    font-weight: normal;
    font-style: normal;
}

header {
    background-color: black;
    color: white;
    position: fixed;
    top: 0;
    right: 0;
    text-align: right;
    width: 100%;
    padding: 10px;
    z-index: 100;
}

body {
    font-family: 'Inter Regular', sans-serif;    
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

footer {
    background-color: black;
    color: white;
    position: fixed;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%;
    padding: 10px;
    z-index: 100;
}

a[href^="mailto:"] {
    color: white;
    text-decoration: underline;
}

/* Optional: style for hover state */
a[href^="mailto:"]:hover {
    color: #f0f0f0; /* slightly darker white when hovering */
}

.responsive-img {
    width: 100%;
    max-width: 498px; /* Maximum size */
    height: auto;
}
