/* nav */
nav {
    text-align: center;
    font-size: 50px;
    margin: 25px;
}

nav>a:link {
    color: rgb(15, 15, 15);
    text-decoration: none;
}

nav>a:visited {
    color: rgb(15, 15, 15);
    text-decoration: none;
}

nav>a:hover {
    background-color: rgb(150, 150, 150);
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

nav>a.active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.container-background {
    background-color: rgb(255, 255, 255);
    height: 100vh;
}

.wrap-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.wrap-container-text {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
}

.profile-container {
    text-align: center;
}

.profile-container>img {
    border: 3px solid rgb(0, 0, 0);
    height: 300px;
    width: 300px;
    object-fit: cover;
    border-radius: 50%;
}

.last_project_container {
    text-align: center;
}

.last_project_container>.card {
    margin-left: auto;
    margin-right: auto;
}

.search-container {
    text-align: center;
}

.search-compliments {
    justify-content: center;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown>ul {
    margin: 0px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(241, 241, 241);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    list-style-type: none;
}

.dropdown-content a {
    color: rgb(0, 0, 0);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    position: relative;
}

dropdown-content a:hover {
    background-color: rgb(221, 221, 221);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: rgb(62, 142, 65);
}

#search {
    width: 20%;
    height: 12.5%;
}

.card {
    display: block;
    background-color: rgb(255, 255, 255);
    width: 20%;
    height: 15%;
    margin: 1%;
    border: 1px solid rgb(0, 0, 0);
    text-align: center;
    transition: transform 0.5s ease;
}

.card:hover {
    transform: scale(1.1);
}

.card>a {
    text-decoration: underline;
}

.card>a>img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 60%;
    object-fit: contain;
    border: 1px solid rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
}

p,
h1,
h2 {
    color: rgb(0, 0, 0);
}

.image {
    text-align: center;
}

#project_container {
    text-align: center;
}

#text_box {
    margin-right: auto;
    margin-left: 30%;
    width: 60%;
    height: auto;
}

.techniques_buttons {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}

.small_project_info_box {
    width: 10%;
    height: 12.5%;
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(0, 0, 0);
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-right: 100px;
    margin-left: 100px;
}

.small_project_info_box>p>a:link, .small_project_info_box>p>a:visited{
    color: rgb(0, 0, 0);
}

.techniques_button {
    background-color: rgb(128, 128, 128);
    color: rgb(255, 255, 255);
    padding: 12px 30px;
    margin: 10px 5px;
    border: 2px solid rgb(0, 0, 0);
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    display: flex;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.techniques_button:hover {
    background-color: rgb(85, 85, 85);
}

.techniques_button input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    margin: 0;
}

.techniques_button input[type="checkbox"]:checked~label {
    background-color: rgb(51, 51, 51);
}

.techniques_button label {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border-radius: 6px;
    pointer-events: none;
}

.search-compliments {
    display: flex;
    flex-wrap: nowrap;
}

footer {
    text-align: center;
    bottom: 0;
    background-color: rgb(0, 0, 0);
    padding: 100px;
}

footer>p {
    color: rgb(255, 255, 255);
}

footer>a:link, footer>a:visited {
    color: rgb(255, 255, 255);
}