@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

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

body {
  font-family: "Roboto", sans-serif;
  margin: 0 24px;
  color: #242424;
  background-color: #eeee;
}

.container {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  text-wrap: balance;
  line-height: 1;
  margin-bottom: 16px;
}

h2 {
  text-align: center;
}

hr {
  border: none;
  width: 60px;
  height: 1.5px;
  margin: 12px auto;
  background-color: #242424;
}

p {
  text-wrap: pretty;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

li {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 8px;
  margin-bottom: 8px;
  border-radius: 8px;
  transition: 150ms ease;
}

li:hover {
  background-color: #4a4a4a;
  color: #eeee;
}

span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  font-size: 20px;
  margin-right: 8px;
}

.placeholder__content {
  padding: 24px;
  border: 1px solid black;
  border-radius: 8px;
  max-height: fit-content;
  max-width: 800px;
  margin-bottom: 48px;
}

.contact {
  position: absolute;
  bottom: 16px;
  background-color: #4a4a4a;
  color: #eeee;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 8px;
  transition: 150ms ease;
}

.contact:hover {
    background-color: #eeee;
    color: #242424;
}