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

body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d1117;
  color: #f0f6fc;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;

  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

section {
  margin-bottom: 40px;
}

.heading-container {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: start;

  margin-block: 40px;
}

h1 {
  text-align: center;
  margin: 0;
}

ul {
  display: flex;
  flex-direction: column;
  gap: 10px;

  list-style: none;
}

.summary-list__item {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 10px;
}

.section__heading {
  margin-bottom: 20px;
}

.skills-section__list,
.accounts-section__list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.skills-section__icon,
.accounts-section__icon {
  width: 40px;
  height: 40px;
}
