body{
    color:black;
}

.expandeButton{
    cursor: pointer;
    list-style-type: none;
    margin: 10px 0px 10px 0px;
    font-weight: bold;
    font-size: x-large;
    text-decoration: underline 2px;
    background: lightgray;
    border-radius: 5px;
    box-shadow: -2px 2px 5px gray;
    padding: 10px;
}

.expandeButton:hover{
    background: rgb(194, 194, 194);
}

details > summary{
    list-style-type: none;   
}

details > summary::before{
    text-decoration: none;
    margin-right: 10px;
    content: '▶️';
}

details[open] > summary::before{
    text-decoration: none;
    content: '🔽';
}

.projectDiv{
    margin: 8px 0px 8px 20px;
    border-radius: 5px;
    text-decoration: underline;
    box-shadow: -2px 2px 2px gray;
}

.projectDiv:hover > a{
    background-color: rgb(235, 235, 235);
}

.requirementsA{
    float: right;
    font-size: smaller;
}