/*
IBM Plex Sans from GFonts
font-style: italic;
font-weight:
100 thin
200 ExtraLight
300 Light
400 Regular
500 Medium
600 SemiBold
700 Bold
*/
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

*
{
  margin: 0;
  padding: 0;
  color-scheme: dark;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 300;
  font-size: 24px;
  color: white;
}
a { text-decoration: none; }
a:hover { color: crimson; }
li { list-style: none; }

h1
{
  font-weight: 100;
  font-size: 72px;
}
h2
{
  font-size: 48px;
  font-weight: 100;
}
body
{
  padding: 5vh 5vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.indicaciones
{
  background-color: white;
  border-radius: 10px;
  padding: 24px 24px 24px 72px;
  margin: 24px;
  width: 40vw;
}
.indicaciones > li
{
  color: black;
  margin: 24px 0;
}