/* nav */
nav
{
    text-align: center;
    font-size: 50px;
    margin: 25px;
}
nav > a:link
{
    color: rgb(120, 120, 120);
    text-decoration: none;
}
nav > a:visited
{
    color: rgb(100, 100, 100);
    text-decoration: none;
}
nav > a:hover
{
    color: rgb(80, 80, 80);
    text-decoration: none;
}
/* containers */
.container-background
{
    border: 1px solid gray;
    background-color: #252525;
}
.wrap-container
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.flex-container
{
    display: flex;
    flex-wrap: nowrap;
}
.profile-container
{
    text-align: center;
}
.profile-container > img
{
    height: 300px;
    width: 300px;
    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 */
.dropbtn {
  padding: 16px;
  font-size: 16px;
  border: none;
}
.dropdown
{
    position: relative;
  display: inline-block;
}
.dropdown > ul
{
    margin: 0px;
}
.dropdown-content
{
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a
{
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
dropdown-content a:hover {background-color: #ddd;}

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

.dropdown:hover .dropbtn {background-color: #3e8e41;}
#search
{
    width: 20%;
    height: 12.5%;
}
/* card */
.card
{
    display: block;
    background-color: rgb(60, 60, 60);
    width: 20%;
    hight: 15%;
    margin: 1%;
    border: 1px solid black;
    text-align: center;
}
.card > a
{
    color: rgb(0, 0, 0);
    text-decoration: none;
}
.card > a > img
{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 60%;
    object-fit: contain;
    border: 1px solid black;
    background-color: white;
}
p, h1, h2
{
    color: rgb(250, 250, 250);
}
.image
{
    text-align: center;
}
/*Adams*/
#project_container
{
    text-align: center;
}
#text_container
{
    margin-left: 10%;
}
.techniques_buttons
{
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}
.big-box
{
    width: 15%;
    height: 12.5%;
    background-color: rgb(70, 70, 70);
    border: 3px solid black;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-content: flex-start;
    margin: 2.5%;
}
.small-box {
    width: 20%;
    height: 5%px;
    margin: 2%;
    background-color: grey;
    border: 2px solid black;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
}
body
{
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.small-box:hover
{
    background-color: #555;
}

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

.small-box input[type="checkbox"]:checked ~ label {
    background-color: #333;
}

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

.submit-btn
{
    background-color: grey;
    color: white;
    padding: 12px 30px;
    border: 2px solid black;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin: 10px 5px;
}

.submit-btn:hover
{
    background-color: #555;
}

.button-container
{
    text-align: center;
}
/**/
.search-compliments
{
    display: flex;
    flex-wrap: nowrap;
}
footer
{
    text-align: center;
    bottom: 0;
    background-color: black;
    color: white;
    padding: 100px;
}
