html, body{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

  .wrapper {
		padding: 0 5%;
		display: flex;
		justify-content: center;
    background-color: #161616;
  }

  .content-wrapper {
  	width: 100%;
		max-width: 900px;
    background-color: #161616;
  }


footer ul{
  display: flex;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
  margin: 0;
}

header, footer{
  background-color: #161616;
}


a{
  color: white;
  transition: .2s ease-in-out;
}

a:hover {
  color: #1273e0;
  scale: 1.1;
}

nav{
  display: flex;
  justify-content: center;
  align-items: center;
}

nav a{
  font-size: 3em;
}

p {
  line-height: 1.6;
}

img {
  max-width: 350px;
  height: auto;
}