@import url('https://fonts.googleapis.com/css2?family=Anton&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Oswald:wght@200..700&family=Outfit:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global styles */
body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: black;
}

/* Add your custom styles below */

/* Nav */

nav {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 2rem 3rem;
    color: #fff;
}

.links a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

nav h1 {
    font-size: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

nav .links a:hover {
    color: #33c4ff;
}

.secondary-color {
    color: #33c4ff;
}

/* Projects */
.projects {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.project {
    background-color: #333;
    color: #fff;
    padding: 1.5rem;
    width: 90%;

}

.project a {
    color: white;
    padding: 1rem 1rem;
}

.links {
    justify-self: start;
}

/* Heading */

.heading {
    text-align: center;
    margin: 2rem 0;
    color: #33c4ff;
}

@media (max-width: 1024px) {

    nav {
        flex-direction: column;
        align-items: center;
    }
}