:root {
    --background-color: #e5e5e5;
}

* {
    box-sizing: border-box;
  }

body {
    background: #fefefe;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1440p;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 16px 0px; */
    gap: 36px;
}

/* h1 {
    align-items: flex-start;
} */

.projects {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    /* padding: 36px 0px; */
    gap: 36px;

    position: relative;
    width: auto;
    height: auto;
}

.projectCard {
    display: flex;
    flex-direction: column;
    /* padding: 16px 0; */

    width: 413px;
    height: auto;

    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
}

.projectCard img {
    max-width: 413px;
    height: 264px;
}

.projectDetails {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 4px;

    width: 413px;
    height: auto;
}

#projectLink {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    /* padding:0px; */
    /* margin:0px; */
}

.projectDetailsLinks {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    padding: 32px 0px 0px 0px;
    gap: 16px;
}

.projectDetails img {
    width: auto;
    height: auto;
}

