* {
  margin: 0;
  padding: 0;
}

:root {
  --textWhite: #fff;
}

a,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--textWhite);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
}
*::-webkit-scrollbar {
  width: 16px;
}
*::-webkit-scrollbar-track {
  background: #1e1e1e;
}

*::-webkit-scrollbar-thumb {
  background-color: #1e1e1e;
  border-radius: 10px;
  border: 2px solid #c6c3c3;
}

body {
  font-family: sans-serif;
  background-color: black;
  font-family: "Newsreader", serif;
  background-color: #1e1e1e;
}
h1,
h2 {
  margin: 0px 0;
}
header {
  margin: 0 auto 40px auto;
  padding: 25px 0;
  background-color: #000;
  box-shadow: 2px 2px 6px white;
  position: fixed;
  width: 100%;
}
header ul {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

header ul li {
  list-style-type: none;
  padding: 0 10px;
}

header ul li a {
  font-size: 20px;
  text-decoration: none;
}

header ul li a:hover {
  text-decoration: underline;
}

main {
  padding-top: 160px;
}
.mx-w-660 {
  max-width: 660px;
  margin: 0px auto;
}

.mx-w-660 h3 {
  text-align: left;
  font-size: clamp(2.25rem, 6vw, 2.75rem);
  font-weight: 200;
  margin: 20px 0;
}

.mx-w-660 p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #dbdbdb;
}

.mx-w-660 h4 {
  margin: 25px 0;
  font-size: 1.75rem;
  text-align: left;
  font-style: italic;
  font-weight: 300;
}

main .flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 20px;
}

main .flex .group {
  background-color: var(--textWhite);
  max-height: 350px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 6px;
  padding: 6px;
  max-width: 400px;
}

main .flex .group h4 {
  color: #000;
}

main .flex img {
  width: 400px;
}
