@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

body {
  background-color: #fff;
  display: flex;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-color: #635a63;
  line-height: 1.5;
  font-size: 16px;
}

a {
  position: relative;
  color: #6e44ff;
  text-decoration: none;
}

a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0b66c7;
  opacity: 0;
  transform: scaleX(0);
  transition: all 200ms ease-in-out;
}

a:hover {
  text-decoration: underline;
}

.container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 40px;
}

.header {
  align-content: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social-media {
  align-items: center;
  display: flex;
  gap: 8px;
}

h1 {
  font-size: 24px;
  line-height: 64px;
}

h2 {
  font-size: 20px;
  line-height: 48px;
}

p {
  margin-bottom: 0.5em;
}

li {
  margin-left: 32px;
  list-style-type: disc;
  margin-bottom: 0.5em;
}
