body{
    background-color: #161616;
    color: rgb(255, 255, 255);
    font-family: 'IBM Plex Sans';
}

h1,h2,h3,h4, ul, p{
    margin: 0;
    padding: 0;
    font-size: 1em;
    font-weight: 300;
}
p{
    padding: 0;
    margin: 0;
    font-size: 1em;
}


.nav{
    padding: 2.5em 20vw 0em 20vw;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.nav-list{
    display: flex;
    justify-content: right;
    list-style-type: none;
}

.nav-link{
    color: white;
    text-decoration: none;
}

.nav-list-element{
    margin: 0 0.5em;
}

li{
    margin-left: 1em;
}


.nav-name{
    font-size: 1.2em;
    font-weight: 900;
    border-bottom: 3px solid #161616;
}

.nav-name:hover,.nav-list-element:hover{
    cursor:pointer;
    transition: 0.1s;
    border-bottom: inset 3px #e8daff;
}

.content{
    margin: 4em 20vw 5em 20vw;
}

.content-text{
    margin-right: 40%;
}

.bubble-container{
    padding: 0;
    height: 100%;
}

.bubble-list{
    display: flex;
    flex-wrap: wrap;
}

.bubble{
    border: 1px solid #be95ff;
    border-radius: 20px;
    padding: 0.25em 0.5em;
    margin: 0.1em 0.1em;
}

.bubble-text{
    color: #be95ff;
    font-weight: 300;

    font-size: 0.8em;

}

.section-header{
    font-size: 2em;
    margin-bottom: 1em;
}

.section-subheader{
    margin: 2em 0 1em 0;

    font-size: 1.5em;
}

.image-frame-1{
    width: 100%;
    height: 150px; 
    overflow:hidden;

    display: flex;
    justify-content: center;
    align-content: center;
}

.main-image-frame{
    height: 200px;
    width: 30%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center; 
}

.main-image{
    height: 150%;
}

.external-links-list{
    display: flex;
    justify-content: center;
    align-items: center;
}

.external-link{
    margin: 1.5em;
}

.external-link-icon{
    width:20px;
    height: 20px;
}

.external-link:hover{
    cursor:pointer;
}

.mission-statement{
    width: 60%;
    padding: 1em 1em 1em 1em;
}

.mission-tab{
    display: flex; 
    justify-content: space-between;
    background-color: #262626; 
    margin-bottom: 2em; 
    padding: 0;
}

.issue-container{
    margin: 0.5rem 0;
    background-color: black;
    border: 1px solid white;
    padding: 1rem 1rem;
    display: flex;
    border-radius: 10px;
}

.issue-title-bubble{
    display: flex;
    align-items: center;

    flex-wrap: wrap;
}

.issue-title{
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0.25em 0;
}

.issue-content{
    width: 80%;
}

.issue-subtext{
    color:#8d8d8d;
    font-size: 0.9rem;
    margin: 0.25em 0;
}

.bubble-list{
    display: flex;
}

.issue-bubble-frontend{
    background-color: #1c0f30;
    border: 1px solid #be95ff;
    border-radius: 20px;
    padding: 0.2em 0.5rem;

    margin: 0 0.25em;

    display: flex;
    justify-content: center;
    align-items: center;
    
}

.issue-bubble-text-frontend{
    font-weight: 500;
    font-size: 0.8rem;
    color: #be95ff;
}

.issue-bubble-backend{
    font-size: 0.9em;
    background-color: #2a0a18;
    border: 1px solid #ff7eb6;
    border-radius: 20px;
    padding: 0.2rem 0.5rem;

    margin: 0 0.25em;

    display: flex;
    justify-content: center;
    align-items: center;
}

.issue-bubble-text-backend{
    font-weight: 500;
    font-size: 0.8rem;
    color: #ff7eb6;
}

.issue-bubble-devops{
    font-size: 0.9em;
    background-color: #071908;
    border: 1px solid #42be65;
    border-radius: 20px;
    padding: 0.2rem 0.5rem;

    margin: 0 0.25em;

    display: flex;
    justify-content: center;
    align-items: center;
}

.issue-bubble-text-devops{
    font-weight: 500;
    font-size: 0.8rem;
    color: #42be65;
}

.issue-bubble-size{
    font-size: 0.9em;
    background-color: #2d0709;
    border: 1px solid #ff8389;
    border-radius: 20px;
    padding: 0.2rem 0.5rem;

    margin: 0 0.25em;

    display: flex;
    justify-content: center;
    align-items: center;
}

.issue-bubble-text-size{
    font-weight: 500;
    font-size: 0.8rem;
    color: #ff8389;
}

.issue-description{
    background-color: black;
    border: 1px solid white;
    padding: 1rem 1rem;
    display: flex;
    border-radius: 0 0 10px 10px;
    
}


.proposal-list{
    padding: 0;
    list-style-type:upper-roman;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.proposal-header{
    font-size: large;
}

.proposal-sublist{
    margin-top: 1rem;
    padding:0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}



@media(max-width: 1000px){
    .nav{
        display:flex;
        flex-direction: column;
    }
    .nav-list{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .nav-list-element{
        margin: 0.2em 0;
    }
    .content{
        margin: 10vh 1rem;
    }

    .content-text{
        margin-right: 10vw;
    }

    .mission-tab{
        flex-direction: column-reverse;
    }

    .main-image-frame{
        flex-direction: column;
        width: 100%;
    }
    .main-image{
        width: 100%;
        height: auto;
    }

    .mission-statement{
        width: 85%;
        padding-right: 1em;
    }

}