body {
    background-color: whitesmoke;
    margin: 0;
    overflow-x: hidden;
}

#nav-bar {
    height: 80px;
    background-color: whitesmoke;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

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

.active-page {
    border-bottom-style: solid;
    border-color: black;
    border-width: 2px;
}

#home {
    background-image: url('home.png');
    background-size: contain;
    width: 40px;
    height: 40px;
}

#container {
    min-height: 91.65vh;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

#technique-box {
    width: 50%;
    min-height: 200px;
    border-style: solid;
    border-color: black;
    border-radius: 10px;
    border-width: 3px;
    font-weight: bold;
}

#content-div {
    width: 90vw;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#information-div {
    width: 30vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#project-name {
    display: flex;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
    border-bottom-style: solid;
}

#info-list {
    font-weight: bold;
    list-style-type: none;
    margin-top: 50px;
    padding-left: 0;
    width: 60%;
}

#info-list > li {
    margin-top: 15px;
    display: flex;
}

#technique-list {
    display: flex;
    list-style-type: none;
    padding-left: 0;
}

.technique {
    background-color: black;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 5px;
    border-radius: 5px;
    border-color: black;
    border-style: solid;
    border-width: 2px;
}

.techniques-project-techniques {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    width: 50%;
    padding-right: 20px;
}

.techniques-project-techniques .technique {
    font-size: 20px;
    font-weight: bold;
    background-color: whitesmoke;
    color: black;
}

.techniques-project-techniques .technique-activated {
    font-size: 20px;
    font-weight: bold;
    background-color: black;
    color: white;
}

#technique-box .technique {
    background-color: whitesmoke;
    color: black;
}

#technique-box .technique:hover, .technique-activated:hover {
    background-color: black;
    color: whitesmoke;
    cursor: pointer;
}

#technique-box #technique-list {
    margin-left: 20px;
}

#techniques-project-list {
    width: 70%;
    margin-top: 10px;
}

.techniques-project {
    background-color: whitesmoke;
    font-size: 35px;
    margin-top: 10px;
    min-height: 60px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    border-radius: 5px;
    border-color: black;
    border-style: solid;
    border-width: 2px;
}

a {
    text-decoration: none;
}

#project-info {
    display: flex;
    justify-content: space-between;
    width: 60%;
}

#list-project-list {
    width: 70%;
    display: flex;
    flex-direction: column;
}

#description-and-image {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

#project-title {
    font-size: 50px;
    color: black;
}

.technique-activated {
    background-color: black;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    margin-left: 5px;
    border-radius: 5px;
    border-color: black;
    border-style: solid;
    border-width: 2px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 5px;
}

#filter-and-sort {
    width: 70%;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

#search-bar {
    display: flex;
}

#search-bar input {
  font-size: 16px;
  padding: 10px;
  width: 250px;
  border-radius: 5px 0 0 5px;
  margin: 0;
}

#search-bar button {
  font-size: 32px;
  background-color: black;
  color: white;
  border-color: black;
  cursor: pointer;
  border-radius: 0 5px 5px 0;
}

.drop-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    cursor: pointer;
    height: 100%;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 5px;
}

.filter-options {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px;
}

.filter-option {
    margin: 0;
}

#filter-drop-down:hover .filter-options {
    display: flex;
    flex-direction: column;
}

#sort-drop-down:hover .sort-options {
    display: flex;
    flex-direction: column;
}
.sort-options {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    padding: 10px;
}
.sort-option {
    margin: 0;
}

#sort-order-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort-order-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sort-order-button label {
    background-color: whitesmoke;
    color: black;
    height: 90%;
    width: 30px;
    font-size: 20px;
    border-color: black;
    border-style: solid;
    border-width: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sort-order-button input[type="radio"] {
    position: fixed;
    height: 3%;
    width: 3%;
    margin: 0;
    cursor: pointer;
    opacity: 0;
}

.sort-order-button input[type="radio"]:checked + label {
    background-color: black;
    color: white;
}

#sort-button-down {
    border-radius: 5px 0 0 5px;
}

#sort-button-up {
    border-radius: 0 5px 5px 0;
}