body{
    background-color: #0E1629;
}

#header{
    background-color: #000000;
    height: 100px;
    width: 100vw;
    display: flex;
    position: relative;
    z-index: 5;
}

#header_logos{
    height: 100%;
    width: fit-content;
    display: flex;
    position: relative;
}

#header_texts{
    height: 100%;
    width: 100%;
}

#header_logos img{
    filter: invert();
    width: 80px;
    height: 80px;
    margin: 5px;
    padding: 5px;
    border-radius: 10px;
    transition: background-color 0.5s;
}

#header_logos img:hover {
    background: #dddddd;
}

.header_spacer {
    background: white;
    width: 1px;
    height: 60px;
    margin: 20px 10px;
}

#header_texts{
    display: flex;
    flex-direction: row;
    color: white;
    text-align: center;
    justify-content: right;
}

#header_texts a{
    color: white;
    text-decoration: none;
}

.ht_element {
    width: 150px;
    height: 100px;
    overflow: hidden;
    background-color: #000000;
    transition: all 0.5s;
}

.ht_element p {
    height: 100px;
    margin: 0;
    line-height: 100px;
    font-size: 25px;
    cursor: pointer;
}

.ht_element:hover {
    background-color: #222222;
}

.ht_element_group{
    display: flex;
    flex-direction: column;
}

.ht_element_group:hover{
    height: fit-content;
}

.ht_element_group a{
    height: 40px;
    line-height: 40px;
    transition: all 0.5s;
}

.ht_element_group a:hover{
    background-color: #333333;
}

@media only screen and (max-width: 1000px) {
    
    #header_trinitylogo{
        display: none;
    }

    .header_spacer{
        display: none;
    }

}