/* Importo fuente desde fonts google*/
@import url("https://fonts.googleapis.com/css2?family=Alice&display=swap");

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

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0px;
}

body {
  font-family: "Alice", serif;
}

img {
  max-width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: black;
}

h1:first-letter,
h2:first-letter,
h3::first-letter,
p:first-letter {
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  main {
    padding-top: 50px;
  }
}