.title {
    text-align: center;
    font-size: 50px;
    margin: 20px 0px;
}

.header {
    height: 100px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.link{
    text-decoration: none;
}

.link:hover {
    color: #333;
}


/* Projects */

.projects-page {
    padding: 50px 100px;
    text-align: center;
    font-size: 35px;
}

.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.project {
    display: flex;
    border: 3px solid black;
    padding: 20px;
    margin: 0px 0px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: 0.3s;
    width: 100%;
}

.project:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

.project-buttons-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.project-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project-order-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.project-buttons-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
}

.project-buttons-pushable:hover {
    filter: brightness(110%);
}

.project-buttons-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

.project-buttons-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(
      to left,
      hsl(340deg 100% 16%) 0%,
      hsl(340deg 100% 32%) 8%,
      hsl(340deg 100% 32%) 92%,
      hsl(340deg 100% 16%) 100%
    );
}

.project-buttons-front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    background: hsl(345deg 100% 47%);
    will-change: transform;
    transform: translateY(-4px);
    transition:
      transform
      600ms
      cubic-bezier(.3, .7, .4, 1);
}

.project-buttons-pushable:hover .project-buttons-front {
    transform: translateY(-6px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.project-buttons-pushable:active .project-buttons-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.project-buttons-pushable:hover .project-buttons-shadow {
    transform: translateY(4px);
    transition:
      transform
      250ms
      cubic-bezier(.3, .7, .4, 1.5);
}

.project-buttons-pushable:active .project-buttons-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.project-buttons-pushable:focus:not(:focus-visible) {
    outline: none;
}

.project-image {
    flex: 0 0 400px; /* change this */
    margin-right: 20px;
}

.project-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.2s;
}

.project-image img:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

.project-content {
    flex: 1;
    text-align: left;
}

.project-name {
    margin-top: 0;
    font-size: 1.5em;
    font-weight: bold;
    text-decoration: none;
}

.project-name:visited {
    color: #0000ee;
}

.project-name:hover {
    color: #333;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
    list-style: none;
    font-size: 30px;
}

.project-tech li {
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 5px 10px;
    margin: 0px 5px;
}

.project-description {
    margin: 10px 5px;
}