@import './styles/reset.css';
@import './styles/basscss.min.css';
@import './styles/variables.css';
@import './styles/responsive.css';

@import './styles/components/index.css';

/* SECTIONS */
@import './styles/sections/about.css';
@import './styles/sections/services.css';

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  margin: 0;
  background-color: #ffffff;
  color: var(--color--body, #121418);
  line-height: 1.6;
}

body * {
  box-sizing: border-box;
}

body,
.dm-sans-400 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

main {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 2rem; */
}

p {
  font-size: 2rem;
  text-align: center;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
  padding: 4rem 2rem;
  margin: 0 auto;
  width: 100%;

  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);

  h1 {
    padding: 0 0 2rem 0;
  }
}

section:nth-of-type(odd) {
  background-color: var(--color--body, #121418);
  color: #f9fafb;
}

section:nth-of-type(even) {
  background-color: #ffffff;
}

blockquote {
  border-left: 4px solid #3182ce;
  margin: 2rem 0;
  padding: 1rem 2rem;
  background-color: #f7fafc;
  font-style: italic;
  color: #4a5568;
}

@media (min-width: 768px) {
  p {
    text-align: left;
  }
}