/* ------------------------------
   Basic reset
------------------------------ */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #00000;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 1.5;
}

/* ------------------------------
   Layout
------------------------------ */

.container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
}

/* ------------------------------
   Header
------------------------------ */

.site-header {
    padding: 60px 0 30px;
    border-bottom: 1px solid #111111;
    outline: 3px solid orange;
}

.site-header h1 {
    margin: 0;
    font-size: 42px;
    font-weight: normal;
}

.site-header p {
    margin: 5px 0 0;
    font-style: italic;
}

/* ------------------------------
   Navigation
------------------------------ */

.site-nav {
    border-bottom: 1px solid #111111;
}

.nav-container {
    display: flex;
    gap: 25px;
    padding: 12px 0;
}

.site-nav a {
    color: #111111;
    text-decoration: none;
}

.site-nav a:hover {
    text-decoration: underline;
}

/* ------------------------------
   Sections
------------------------------ */

.section {
    padding: 50px 0;
    border-bottom: 1px solid #cccccc;
    outline: 3px solid blue;
}

.section h2 {
    margin-top: 0;
    font-size: 30px;
    font-weight: normal;
}

/* ------------------------------
   Projects
------------------------------ */

.projects {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.project {
    flex: 1 1 250px;
    padding: 20px;
    border: 1px solid #111111;
}

.project h3 {
    margin-top: 0;
    font-size: 22px;
    font-weight: normal;
}

.project a {
    color: #111111;
}

.project a:hover {
    text-decoration: none;
}

/* ------------------------------
   Footer
------------------------------ */

.site-footer {
    padding: 30px 0;
    text-align: center;
    font-size: 16px;
    outline: 3px solid red;
}

.site-footer p {
    margin: 0;
}

/* ------------------------------
   Mobile
------------------------------ */

@media (max-width: 600px) {

    body {
        font-size: 17px;
    }

    .site-header h1 {
        font-size: 34px;
    }

    .nav-container {
        flex-direction: column;
        gap: 5px;
    }

    .projects {
        flex-direction: column;
    }
}
