@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

body {
   font-family: "Google Sans Flex", sans-serif;
   font-optical-sizing: auto;
   font-style: normal;
   font-variation-settings:
            "slnt" 0,
            "wdth" 112.5,
            "GRAD" 0,
            "ROND" 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

h2 {
    margin: 0;
}

a {
    margin: 10px;
}

.nav-bar {
    padding: 1em;
}

.page-button, .page-button:visited {
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 0.8rem 2rem;
    background-color: #a7a7a7;
    border: 1px solid #000;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 4px 4px 0px 0px black;
    transform: translate3d(0, 0, 0);

    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.page-button:hover {
    transform: translate3d(-4px, -4px, 0);
    box-shadow: 8px 8px 0px 0px black;
    font-weight: 800;
}

.project-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1em;
}

.team-members {
    display: flex;
    padding: 1em;
}

.member-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
}

.member-name {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 215px;
}

.profile-picture {
    border: 1px solid #000;
    border-radius: 10%;
    max-width: 150px;
    box-shadow: 8px 8px 0px 0px black;
    filter: grayscale(0.3) contrast(1) brightness(1.1);
    mix-blend-mode: overlay;
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.profile-picture:hover {
    transform: translate3d(-4px, -4px, 0);
    box-shadow: 10px 10px 0px 0px black;
    filter: grayscale(0.05) contrast(1) brightness(1.1);
}
