@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800;900&display=swap");

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

html {
  background: #0c3131;
  color: white;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

main {
  padding: 3.5rem;
  border: 1px solid #bcf6ad;
}

hr {
  border-color: #bcf6ad;
  width: 1.5rem;
}

header {
  display: flex;
  align-items: center;
}

header h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.875rem;
  font-weight: 620;
  background: linear-gradient(333deg,rgb(97, 97, 97), #eeeeee,#fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 1rem;
}

.roll {
  height: 1.875rem;
}

section {
  margin-top: 1.875rem;
  padding-right: 1.25rem;
}

section h3 {
  font-size: 1.063rem;
  font-weight: 400;
  text-transform: capitalize;
}

main ul {
  list-style: none;
  margin-top: 0.5rem;
  padding: 0;
}

main ul li {
  list-style-position: inside;
  margin-top: 0.25rem;
  color: #dad7d7;
  line-height: 1.25;
}

#links ul {
  margin-top: 0.313rem;
  display: flex;
  list-style: none;
}

#links ul li {
  margin-right: 0.938rem;
}

#links ul li a {
  color: #bcf6ad;
  text-decoration: none;
  text-underline-offset: 0.375rem;
}

@media (hover: hover) {
  #links a:hover {
    outline: 0;
    color: white;
    text-underline-offset: 0.375rem;
    text-decoration: underline;
    transition: 0.3s;
  }
}

#quote {
  padding-right: 1.25rem;
  margin-top: 1.875rem;
  color: #c1c1c1;
}

#quote figcaption {
  margin-top: 0.313rem;
}

.underline {
  color: white;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 0.125rem;
}

#slo {
  text-decoration-color: #247053;
}

#amz {
  text-decoration-color: #05a0d1;
}

#crwd {
  text-decoration-color: #fc0000;
}

#pduty {
  text-decoration-color: #06ac38;
}

@media only screen and (max-width: 767px) {
  main {
    padding: 0;
    border: 0;
  }

  .container {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 10%;
  }

  header h1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.563rem;
    font-weight: 700;
  }

  .roll {
    height: 1.563rem;
  }

  main ul li {
    font-size: 0.875rem;
  }
}

@supports (height: 100svh) {
  .container {
    height: 100svh;
  }
}
