body {
    background-color: white;
    color: black;
    font-family: 'IBM Plex Mono', monospace;
    display: flex;
    flex-direction:column;
    min-height: 100vh;
    overflow: scroll; /* Hide any content that overflows the viewport */
    margin: 0;
}

/* Beginning of styles for the header/nav bar */
.header-container{
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid black;
}

.header-logo {
    flex: 0.3;
    padding-left: 60px;
}

.header-logo > a > img {
    width: 150px;
    height: auto;
}

.header-logo:visited {
    color: black;
    text-decoration: none;
}

.nav-container{
    flex: 1;
    display: flex;
    padding: 20px;
    justify-content: flex-end;
}

.sidebar-open-button {
    display: none;
    font-family: 'IBM Plex Mono', monospace;
    border: 2px black solid;
    width: 75px;
}

.sidebar-close-button {
    width: 100%;
    height: 30px;
    border: none;
    font-family: 'IBM Plex Mono', monospace;
}

.sidebar-close-button:hover {
    opacity: 50%;
    transition: 0.2s;
    cursor: pointer;
}

.sidebar-nav-selector {
    display: none;
    justify-content: flex-end;
    padding-right: 60px;
    flex: 1;
    border-bottom: 2px solid black;
}

.sidebar-nav-selector > ul {
    padding-left: 120px;
}

.sidebar-nav-selector > h3 {
    padding-left: 60px;
}

@media (max-width: 1000px) {
    .nav-container{
        display: none;
    }
    .header-logo {
        flex: 1;
        padding-left: 60px;
    }
    .sidebar-open-button{
        display: block;
        margin-right: 60px;
    }
}


.nav-selector {
    display: inline-block;
    padding-left: 25px;
    padding-right: 25px;
}

.nav-label {
    text-decoration: none;
    color: black;
    font-size: 25px;
}

.nav-selector:hover .dropdown-content {
    display: block;
    position: absolute;
}

.dropdown-content {
    display: none;
    background-color: white;
}

.dropdown-content > a {
    color: black;
    padding: 12px 16px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}
/* End of styles for the nav bar */

/* Beginning of styles for main container */

.main-container {
    display: flex;
    align-items: center;
    min-height: 80vh;
    flex-direction: column;
}

.mission-container {
    margin: 10px
}

/* End of styles for main container */


/* Beginning of styles for footer */
.footer-container {
    background-color: rgb(6, 6, 6);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #15191a;
}

.footer-text {
    color: white;
}

.footer-text h3 {
    font-size: 25px; /* Adjust the font size as needed */
    font-weight: bold;
}

.svg-inline--fa {
    vertical-align: -0.2em;
}

.rounded-social-buttons {
    text-align: center;
    padding: 30px;
}

.rounded-social-buttons .social-button {
    display: inline-block;
    position: relative;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border: 0.125rem solid transparent;
    padding: 0;
    text-decoration: none;
    text-align: center;
    color: #fefefe;
    font-size: 1.5625rem;
    font-weight: normal;
    line-height: 2em;
    border-radius: 1.6875rem;
    transition: all 0.5s ease;
    margin-right: 0.25rem;
    margin-bottom: 0.25rem;
}

.rounded-social-buttons .social-button:hover,
.rounded-social-buttons .social-button:focus {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.rounded-social-buttons 
.fa-slack,
.fa-linkedin,
.fa-instagram {
    font-size: 30px;
}


.rounded-social-buttons .social-button.twitter {
    background: #55acee;
}

.rounded-social-buttons .social-button.twitter:hover,
.rounded-social-buttons .social-button.twitter:focus {
    color: #55acee;
    background: #000000;
    border-color: #55acee;
}

.rounded-social-buttons .social-button.linkedin {
    background: #007bb5;
}

.rounded-social-buttons .social-button.linkedin:hover,
.rounded-social-buttons .social-button.linkedin:focus {
    color: #007bb5;
    background: #000000;
    border-color: #007bb5;
}


.rounded-social-buttons .social-button.instagram {
    background: #125688;
}

.rounded-social-buttons .social-button.instagram:hover,
.rounded-social-buttons .social-button.instagram:focus {
    color: #125688;
    background: #000000;
    border-color: #125688;
}
/* End of styles for footer */