* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
  
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

section {
  align-self: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

section > div {
  max-width: 1600px;
  width: 100%;
}

ul {
  list-style-type: none;
  list-style-position: inside;
  padding-left: 0px;
}

@media (max-width: 640px) {
  ul {
    list-style-image: url('./icons/Rectangle-small.svg');
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  ul {
    list-style-image: url('./icons/Rectangle.svg');
  }
}

@media (min-width: 1023px) {
  ul {
    list-style-image: url('./icons/Rectangle-max.svg');
  }
}

li {
  padding-left: 0px;
}

textarea {
  resize: none;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}
