
body {
    background-color: #0B0B0C;
    color: white;
    text-align:center;
    width: 50%;
    margin:0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 100px;
}

/* Navbar Styles */
.navbar {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
}
#navbar_links {
    display:flex;
    flex-direction:row;
    justify-content: space-between;
    list-style-type: none;
    padding: 10px;
}
#navbar_links li {
    text-decoration: none;
    padding: 10px;
}
#navbar_links a {
    color: white;
    text-decoration: none;
}
.navbar_left {
    display: flex;
    flex-direction: row;
    align-items: center;
}
#profile_desc {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    text-align: left;
}
#profile_desc p {
    margin: 0;
}
#profile_pic {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.fa-brands, .fa-solid {
    font-size: 2rem

}

/* Main Content */
#skills_list {
    text-decoration: none;
    list-style-type:none;
}
.skills {
        margin-top: 10vh;
}
.about_me_container {
    text-align:left;
    margin-top: 10vh;
}
.school_projects {
    text-align:left;
    margin-top: 5vh;
}
.school_projects_list{
   display:flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: space-around;
}
.personal_projects {
    text-align:left;
    margin-top: 5vh;
}
.personal_projects_list{
   display:flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: space-around;
}
.project_container {
    background-color: #1A1A1B;
    border-radius: 10px;
    padding: 20px;
    width: 30%;
    text-align: center;
    margin-bottom:10px;
    padding-bottom: 30px;
}
.project_container img {
    width: 100%;
    height: auto;
    padding-bottom: 10px;
}
.github_redirect {
    font-weight: bold;
    padding: 10px;
    background-color: #2C2C32;
    border: none;
    color:white;
    text-decoration: none;
}
.contact{
    justify-items: center;
}
form {
    display: flex;
    flex-direction:column;
    gap: 10px;
    width: 25vw;
}
form p {
    margin: 0;
    align-self: flex-start;
}
textarea {
    height: 20vh;
}
input, textarea{
    background-color:#1A1A1B;
    color: white;
    border: none;
}
textarea{
    resize: vertical;
    min-height: 20vh;
}
form button {
    width: 100px;
    height: 40px;
    align-self: center;
    font-weight: bold;
}