html{
    height: 100%;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #333;
    }
header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

main {
    padding: 20px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 10px 0;
    color: white;
}
p {
    line-height: 1.6;
    color: white;
}

ul, ol, li {
    margin: 10px 0;
    padding: 0 20px;
    color: white;
}
em{
    color: cyan;
    text-shadow: 0 0 5px #007BFF;
}

#navigation_bar {
    background-color: #5a5554;
    justify-content: center;
    display: flex;
    position: sticky;
    top:0;
    align-items: center;
    width: 100%;
    min-width: 1000px;
    height: 5vh;
    z-index: 10;
}

#navigation_bar button {
    background-color: #5a5554;
    height: 100%;
    color: white;
    border: none;
    padding: 14px 50px;
    cursor: pointer;
    font-size: 17px;
}
#navigation_bar button:hover {
    background-color: #333;
    transform: translateY(-2px);
}
#navigation_bar img {
    height: 5vh;
    width: auto;
    position: absolute;
    left: 0;
}

#join {
    width: 100vw;
    height: 95vh;
    margin: 0 auto;
    position: relative;
    top: 5vh;
    left: 0;
    background-color: #333;
    align-items: center;
    justify-content: center;
}

#join h1, #join h2, #join h3, #join h4, #join p{
    color: white;
    text-align: center;
    margin-top: 20px;
}

#join h4 {
    margin-left: 1vw;
}

#projects_bar {
    width: 60vw;
    height: 10vh;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #444;
}
#projects_bar button {
    background-color: #5a5554;
    color: white;
    border: none;
    padding: 14px 50px;
    cursor: pointer;
    font-size: 17px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

#projects_bar button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

#projects {
    display: block;
    width: 60vw;
    height: 60vh;
    margin: 0 auto;
    position: relative;
    background-color: #444;
}
#mobileabout {
    padding: 40px;
    background-color: #333;
    position: relative;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
}
#project {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
#project p {
    margin: 0;
}
#project a {
    margin-left: 10px;
    text-decoration: none;
    color: #007BFF;
    display: inline-block;
    vertical-align: middle;
}
#project a:hover {
    text-decoration: underline;
}
#footer {
    background-color: #333;
    color: white;
    padding: 50px 0;
    text-align: center;
    width: 100%;
    position: static;
    height: 10%;
    justify-content: center;
    align-items: center;
    bottom:0;
}

#footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
}

#footer p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
}

#about{
    width: 100vw;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 0;
    left: 0;
    background-color: #333;
    align-items: left;
    justify-content: left;
    padding: 2vh;
}
