@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'Suisse';
    src: url('./fonts/SuisseIntlMono-Thin.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    --primary: white;
    --primary-dark: black;
    background-color: var(--primary);
    color: black;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: "scandia-web", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.05em;
    margin: 0;
    padding: 0;
}

.title {
    position: fixed;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.title a {
    color: black;
    text-decoration: none;
}

.title a:hover {
    opacity: 45%;
}

.contact {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    position: fixed;
    top: 32px;
    right: 32px;
    z-index: 100;
}

.contact a {
    color: black;
    text-decoration: none;
}

.contact a:hover {
    opacity: 45%;
}

menu {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    list-style: none;
    margin: 0;
    padding: 32px;
    display: flex; 
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0; 
    z-index: 100;
}

nav {
    display: flex;
    flex-direction: column;
}

menu a {
    color: black;
    text-decoration: none;
}

menu a:hover {
    opacity: 45%;
}

li {
    margin: 0;
    list-style: none;
}

/* About page layout */
.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 0 100px;
    margin-left: 150px;
    min-height: 100vh;
}

.about-image {
    flex-shrink: 0;
}

.about-image img {
    width: 350px;
    height: auto;
    display: block;
}

.about-text {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    line-height: 1.3;
    max-width: 500px;
}

.about-text p {
    position: static;
}

.cv-link {
    color: black;
    text-decoration: underline;
    display: inline-block;
    margin-top: 20px;
}

.cv-link:hover {
    opacity: 45%;
}

/* Footer links */
.footer-links {
    font-family: 'Suisse', monospace;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    gap: 20px;
    z-index: 100;
    background-color: white;
    padding: 32px;
    box-sizing: border-box;
}

.footer-links a {
    color: black;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 45%;
}

.email-link {
    margin-left: auto;
    position: fixed;
    bottom: 32px;
    right: 32px;
}