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

body {
  margin-top: 50px;
  background-color: black;
}

p {
  color: white;
  font-family: sans-serif;
}

a {
  text-decoration: none;
  color: white;
}

img {
  margin: 10px;
}

.icon {
  height: 50px;
  width: 50px;
}

.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.social-media {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 800px) {
  .social-media {
    flex-direction: column;
  }
}