* {
  box-sizing: border-box;
}
/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");

html {
  font-size: 100%;
} /* Esto significa 1rem por defecto */

body {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  /* display: flex; */
  justify-content: center;
  align-content: center;
  /* height: 100vh; */
  width: 100vw;
  align-items: center;
  background-color: white;
  justify-content: center;
  margin: 0; /* Asegura que no haya márgenes predeterminados */
  font-family: "Lato";
  /* padding-top: 100px; */
}

.circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #2096f3;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.app-bar {
  background: transparent;
  color: white;
  text-align: center;
  display: flex;
  padding: 20px 50px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

#profile-picture {
  width: 45px;
  height: 45px;
  object-fit: contain;
  stroke-width: 1px;
  stroke: var(--Color-Grays-White, #fff);
  background-color: white;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid white;
}
