/* Reset some default styles */

body,
h1,
h2,
p,
ul,
li {
    margin: 0;
    padding: 0;
}


/* Basic styling */

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

@font-face {
    font-family: 'hackdaddy';
    src: url('/static/fonts/Hackdaddy.otf') format('opentype');
}

h1,h2,h3,h4,h5,h6, a {
    /* change text color to green */
    /* color: green; */
    font-family: 'hackdaddy';
}
 
header {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

@media only screen and (max-width: 850px) {
    nav {

        display: flex;
        justify-content: space-between;
        gap: 2rem;
        flex-direction: column;
    }
}

@media only screen and (max-width: 567px) {
    nav ul {

        display: flex;
        justify-content: space-between;
        gap: 2rem;
        flex-direction: column;
    }
}

.logo h1 {
    font-size: 24px;
}

.nav-links {
    display: flex;
}

.nav-links ul {
    list-style: none;
    /* display: flex; */
    /* flex-direction: column; */
}

.nav-links li {
    list-style: none;
    margin-right: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff6600;
}


/* Hero section */

#hero {
    background-image: url('/static/img/20221005_182534.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 150px 0;
    color: #fff;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff3300;
}


/* About section */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 50px 20px;
    gap: 2rem;
}
/* Projects section, and Contact section can be styled similarly */


/* Footer */

footer {
    text-align: center;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
}