



:root {
    --primary: #0969DA;
    --background: #EDEEF7;
    --gray: #EDEEF7;
    --white: #FCFCFC;
    --navbar-height: 60px;
}

body {
    font-family: "Red Hat Display", 
        sans-serif;
    font-size: 16px;
    background: var(--background);
    display: flex;
    height: 100vh;
    width: 100vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#team-members {
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 2rem;
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 
     24px 0px;
}

.team-member {
    position: relative;
    z-index: 1;
    min-height: 3.75rem;
    width: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    border-radius: 1.5rem;
    font-size: 1rem;
    padding: 1rem;
    align-items: center;
    background: var(--white);
    box-shadow: 
     rgba(0, 0, 0, 0.05) 0px 6px 
      24px 0px;
}

.team-member:hover {
    cursor: grab;
}

.social-links {
    list-style-type: none;
    padding: 0;
    display: flex;
    margin: 0 auto;
    margin-top: auto;
    gap: 0.375rem;
    flex-direction: row;
}

.social-links img {
    height: 1.25rem;
    width: 1.25rem;
}

.team-member-avatar {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: cover;
    border-radius: 50%;
}

.team-member-socials {
    display: flex;
    gap: 0.5rem;
}

.team-member-name {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.team-member-name h3 {
    font-size: 1.125rem;
}

.team-member-name p {
    font-size: 0.875rem;
}

.team-member-chosen {
    box-shadow: 8px 8px 32px #E1E1E1;
}

.team-member-drag {
    opacity: 0;
}

@media (max-width: 400px) {
    .social-links {
        display: none;
    }
}