* {
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Special+Elite&display=swap');

:root {
    --light-bg: #f5f2ed;
    --dark-text: #2b241c;
    --medium-bg: #e2cca7;
    --accent: #bd7f49;
    --accent-dark: #a66a3c;
    --grey: #837f7a;
}

body {
    font-family: Arial, serif;
    background-color: var(--medium-bg);
    color: var(--dark-text);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", "Outfit";
}

a {
    color: var(--dark-text);
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--light-bg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    padding: 0;
}

.nav-links a {
    margin-top: 10px;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: var(--light-bg);
    border-top: 2px solid var(--dark-text);
}

footer a {
    margin: 0 20px;
}

button {
    background-color: var(--accent);
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: bolder;
    box-shadow: 5px 5px 13px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}

#hero {
    height: 400px;
    padding-top: 200px;
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
}

#aboutme {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 25px;
    text-align: center;
    margin: 150px;
}