@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
}

p,
details {
  hyphens: auto;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-text-primary);
  text-decoration: none;
  text-decoration-color: white;
  transition: var(--transition-default);
}

a:hover {
  color: gray;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}

section {
  padding-top: var(--section-padding-top);
  height: 96vh;
  margin: var(--section-margin);
  box-sizing: border-box;
  min-height: fit-content;
}

.title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.icon {
  cursor: pointer;
  height: 2rem;
}
