:root {
    --background: #111827;
    --text: #e5e5e5;
    --accent: #60a5fa;
    --secondary: #1f2937;
}

html {
    background-color: var(--background);
    font-size: 10px;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    margin: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: auto;
    padding: 0;
}

#main {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-header {
    font-size: 50px;
    text-align: center;
    color: var(--text);
    letter-spacing: 5px;

}

.intro-htext {
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 2px;
    color: var(--text);
}

p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.5px;
    color: var(--text);
}

h1, h2, h3 {
    color:var(--text)
}

.about-header {
    scroll-padding-top: 60px;
    text-align: center;
}
#about {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#projects {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-header {
     scroll-padding-top: 60px;
    text-align: center;
}

#contact {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-header {
    scroll-padding-top: 60px;
    text-align: center;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

ul {
    list-style-type: none;
    justify-content: space-evenly;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 20px;
    text-decoration: none;
}


nav {
    background-color: darkslateblue;
    padding: 0;
    width: 100%;
    position: sticky;
    /*color: var(--secondary)*/
    color: var(--text);
    border-bottom: 1px solid #2d3748;
    top: 0;
    z-index: 1000;

}

ul li a:visited, ul li a:link {
    color: var(--text);
    text-decoration: none;


}

ul li a:hover, ul li a:active {
    color: var(--accent);
    text-decoration: none;

}


.content-wrapper {
    max-width: 1600px;
    padding: 0 20px 20px 20px;
    margin: auto;

}