.project-container {
    display:flex;
    padding: 2%;
    gap: 3rem;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgb(36, 36, 36);
    justify-content: center;
}
.project-container project{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-between;
    width:min-content;
    background-color: rgb(23, 23, 23);
    border-radius: 5%;
    cursor:grab;
}

.project-container project:hover {
    background-color: #4242421b;
}

.small-image{
    margin-top: 0%;
    display: flex;
    width: 26rem;
    height: 26rem;
    border-top-left-radius: 5%;
    border-top-right-radius: 5%;
    border-bottom-style: solid;
    border-bottom-width: .5rem;
    border-color: rgb(221, 115, 115);
}

.header-container {
    display:flex;
    flex-direction: column;
    justify-content: center;
    background-color: rgb(23, 23, 23);
    margin: 0%;
    border-bottom-style: solid;
    border-bottom-width: .5rem;
    border-color: rgb(221, 115, 115);
}


.button-container {
    margin-top: 2%;
    margin-bottom: 2%;
    align-self: center;
    display: flex;
    width: fit-content;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.button-container button {
    padding: 1rem;
    font-size: 2rem;
    border: none;
    border-radius: 5px;
    background-color: rgb(23, 23, 23);
    color: white;
    cursor: grab;
}

.button-container button:hover {
    background-color: #4242421b;
}



body {
    font-family: Arial, sans-serif;
    background-color: rgb(36, 36, 36);
    line-height: 1.6;
    overflow-y: scroll; 
    overflow-x: hidden;
    margin: 0%;
}
header {
    text-align: center;
    margin-bottom: 2rem;
    background-color: aqua;
}

h1 {
    justify-content: center;
    font-size: clamp(1.5rem, 8vw, 4rem);
    color: white;
    margin-left: .5rem;
    margin-right: .5rem;
    align-self: center;
}
h3 {
    font-size: 2rem;
    margin: .5rem;
    margin-bottom: .125rem;
    color: white;
    font-weight: bolder;
    text-decoration: underline;
}
h4 {
    font-size: 1.25rem;
    margin-top: .01rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: white;
    margin-bottom: 1rem;
}
a {
    color: #0366d6;
    text-decoration: none;
    }
a:hover {
    text-decoration: underline;
}