@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Sen:wght@400..800&display=swap");

:root {
  /*   --window-visible-height: 100%;
 */
  --max-width-1: 90rem;
  --max-width-2: 70rem;
  --max-width-3: 60rem;

  --spacing-1: 0.3rem;
  --spacing-2: 1rem;
  --spacing-3: 2rem;
  --spacing-4: 5rem;
  --spacing-5: 7.5rem;
  --spacing-6: 10rem;
  --spacing-7: 15rem;

  --padding-desktop: 2rem;
  --padding-mobile: 5%;

  --fs-l: 7rem;
  --fs-m: 2rem;
  --fs-std: 1.5rem;
  --fs-s: 1.1rem;
  --fs-xs: 0.9rem;

  --fw-l: 300;
  --fw-m: 400;
  --fw-b: 500;

  --border-radius: 16px;
  --project-gutter-desktop: 2rem;
  --project-gutter-mobile: 2rem;

  --clr-grey: #c6c6c6;
}

@media (max-width: 50em) {
  :root {
    --spacing-1: 0.3rem;
    --spacing-2: 0.5rem;
    --spacing-3: 1.2rem;
    --spacing-4: 3rem;
    --spacing-5: 5rem;
    --spacing-6: 8rem;
    --spacing-7: 10rem;

    --fs-l: 1.8rem;
    --fs-m: 1.4rem;
    --fs-std: 1.4rem;
    --fs-s: 1rem;
    --fs-xs: 0.7rem;
  }
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  gap: 1rem;
  background: black;
  color: white !important;
  font-size: 1.2rem;
}

/*--------- BASIC STYLES ---------*/

* {
  text-align: center;
}

.module {
  margin-bottom: 3rem;
}
/*--------- END BASIC STYLES ---------*/

#inputFields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  font-family: "Roboto", sans-serif;
  border: 1px solid white;
  border-radius: 5px;
  background: transparent;
  padding: 0.4rem;
  color: white;
}

button {
  background: white;
  color: black;
  border: none;
  padding: 0.3rem 1rem;
  text-transform: uppercase;
}

/* Basic styling for user list */
.user-list {
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
}

.user-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.user-item img,
#userProfilePic {
  width: 5rem;
  height: 5rem;
  border-radius: 10000px;
  object-fit: cover;
  margin-right: 10px;
}

.user-item span {
  font-size: 16px;
  font-weight: bold;
}

/*--------- USER INFO ---------*/

#userInfo {
  align-items: center;
}
