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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'PressStart2P';
    background-color: #0d1117;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.contact-page {
    flex: 1;
    padding: 4rem 2rem;
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: inherit;
}

.contact-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.contact-form form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-links {
    position: relative;
    top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-links a {
    color: #58a6ff;
    text-decoration: none;
}

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

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

input, textarea {
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    background-color: #161b22;
    color: white;
    font-size: 1rem;
    resize: vertical;
}

button {
    padding: 0.75rem 1.5rem;
    background-color: #238636;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2ea043;
}
