/* Dont judge me i dont like css */
:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #202124;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
}

main {
  width: 80vw;
  height: 100%;
  margin: 1rem auto;
  padding: 1rem;
  text-align: center;
  background-color: #19181b;
  border-radius: 0.5rem;
  border: 1px solid #333;
  box-shadow:
    rgba(0, 0, 0, 0.19) 0px 10px 20px,
    rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

a {
  font-weight: 500;
  color: #c05cff;
  cursor: pointer;
  text-decoration: inherit;
}

a:hover {
  color: #bf41bf;
}

header {
  line-height: 1;
}

section {
  margin: 1rem 0;
  border: 1px solid #333;
  border-radius: 0.5rem;
  text-align: left;
  padding: 1rem;
}

section h3 {
  margin-top: 0;
  margin-bottom: 0;
}

section h4 {
  margin-top: 0;
  margin-bottom: 0;
}

section h5 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

ul {
  margin-top: 0;
}

section p {
  margin-top: 0;
}

#skills ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
}

.right {
  float: right;
}

.break-after {
  break-after: page;
}

@media print {
  body {
    margin: 0;
    font-size: 8.5pt;
    color: #000;
  }

  main {
    width: 100%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  section {
    margin: 0;
    border: none;
    border-radius: 0;
    padding: 0;
  }

  footer {
    display: none;
  }
}
