body {
  background-color: white;
  display: flex;
  flex-direction: column;
  font-family: 'Verdana', Sans-Serif;
}

#top {
  margin: 5px;
  display: flex;
  flex-direction: row;
}

.header {
  max-width: 200px;
  width: 100%;
  height: 150px;
  overflow: auto;
  padding: 5px;
  border-radius: 3px;
  box-shadow: 0 0 3px 3px inset pink;
  font-size: 15px;
}

#bottom {
  margin: 5px;
}

a {
  color: #e30b33;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  font-size: 16.5px;
  letter-spacing: 2px;
}

@media (max-width: 360px) {
  #top {
      flex-direction: column;
  }
  .pfp, .header {
    width: 100%;
  }
}