@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(26, 27, 31);
    font-family: "Poppins", sans-serif;
}

.main_container {
    width: 80%;
    margin: auto;
    background-color: #edf0f1;
    border-radius: 5px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.1);
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 50px;
}

li, a, button {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #edf0f1;
    text-decoration: none;
}

header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 10%;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 10%;
}

button {
    padding: 9px 25px;
    background-color: rgba(0, 74, 173, 1);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-left: 20px;
}

button:hover {
    background-color: rgba(0, 74, 173, 0.75);
}

.logo {
    width: 20vw;
    cursor: pointer;
    margin-right: auto;
}

header a:nth-child(1) {
    margin-right: auto;
}

.nav_links {
    list-style: none;
}

.nav_links li {
    display: inline-block;
    padding: 0 20px;
}

.nav_links li a {
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: rgb(0, 74, 173);
}

.red {
    color: red;
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .logo {
        width: 50vw;
    }

    .nav_links li {
        padding: 0 10px;
    }
}

.hero {
    background-color: rgba(0, 74, 173, 1);
    padding: 100px 0;
    text-align: center;
    color: #edf0f1;
}

.about,
.projects,
.blog {
    padding: 50px 0;
    text-align: center;
}

.container p {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: white;
}

.project p {
    color: black;
}

.project-grid {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.project {
    background-color: #edf0f1;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.project h4 {
    margin-bottom: 10px;
}

.container h3 {
    padding: 0 20px; /* Add padding to the left and right of the h3 elements */
}

.section h1, h2, h3 {
    color: white;
}

.footer {
    font-size: 12px;
    color: white;
}