@import url('https://fonts.googleapis.com/css2?family=Lexend+Mega:wght@400;600&family=Source+Code+Pro:wght@400;600&display=swap');

body {
    background-color: #f9f9f9;
    color: #000;
    font-family: 'Source Code Pro', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: "Lexend Mega", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
}

p, label, span, input, select {
    font-family: "Source Code Pro", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

button, .btn {
    background-color: #000;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 0;
    font-family: "Source Code Pro", sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover, .btn:hover {
    background-color: #333;
}

.container {
    max-width: 900px;
    margin: auto;
    padding: 1rem;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

input, select {
    border: 1px solid #ccc;
    padding: 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

header img {
    background: #222;
    border-radius: 10px;
    padding: 14px;
}
