@font-face {
    font-family: 'Maison Neue Light';
    src: url('fonts/Maison_Neue_Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Maison Neue Bold';
    src: url('fonts/Maison_Neue_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Apply font to everything */
* {
    font-family: 'Maison Neue Light', sans-serif;
    box-sizing: border-box;
    letter-spacing: -0.5px;
    color: black;
    margin: 0;
    padding: 0;
}

/* Base font size */
html {
    font-size: 0.6rem;
    height: 100%;
    overflow: hidden;
}

/* Body styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    position: relative;
}

/* Adjust body height based on viewport height (vh) to avoid keyboard issues */
body {
    height: calc(var(--vh, 1vh) * 100);
}

/* Form container styling */
.form-container {
    width: 100%;
    max-width: 450px;
    padding: 0px 30px;
}

/* Form styling */
form {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Text input styling */
input[type="text"] {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid #828080;
    border-radius: 3px;
    font-size: 1rem;
    color: black;
    background-color: white;
    cursor: pointer;
}

/* Submit button styling */
input[type="submit"] {
    padding: 5px 10px;
    border: 1px solid #828080;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 100;
    color: black;
    background-color: #f8f8f8;
    cursor: pointer;
    width: auto;
}

/* Header box styling */
.header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Header title */
.header-title {
    color: black;
    font-family: 'Maison Neue Light', sans-serif;
    font-weight: 700;
}

/* Header links styling */
.header-links {
    display: flex;
    gap: 15px;
    font-family: 'Maison Neue Light', sans-serif;
    font-weight: 700;
}

.link {
    color: #1f3092;
    text-decoration: none;
}

/* Specifically underline the "Resume & Portfolio" link */
.header-links .link:first-child {
    text-decoration: underline;
}

/* Footer styling */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    padding: 0px 25px;
    max-width: 450px;
}

.footer-text {
    color: #a5a4a4;
    letter-spacing: .3px;
}

/* Thin line above the footer */
.footer::before {
    content: '';
    display: block;
    width: 100%;
    height: .5px;
    background-color: #a5a4a4; /* The line color */
    margin-bottom: 8px; /* Add some space between the line and the footer text */
}

/* Notification styling */
.notification {
    width: 100%;
    max-width: 450px;
    margin: 10px 0; /* Adds some space above and below the rectangle */
    text-align: center;
    color:black;
    font-size: 1rem;
    letter-spacing: .05px;
}

.email-link {
    color: #1f3092; /* Blue color */
    text-decoration: none; /* Optional: Removes underline */
}

