* {
  padding: 0;
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

body,
.header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.container,
.info,
.header {
  gap: 20px;
  margin: 30px;
}
.pfp {
  width: 300px;
  box-shadow:
    rgba(0, 0, 0, 0.25) 0px 54px 55px,
    rgba(0, 0, 0, 0.12) 0px -12px 30px,
    rgba(0, 0, 0, 0.12) 0px 4px 6px,
    rgba(0, 0, 0, 0.17) 0px 12px 13px,
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
  margin-right: 20px;
}
.info {
  display: flex;
  gap: 40px;
}
input,
button {
  background-color: white;
  outline: none;
  border: none;
  padding: 5px;
}

.searchbar {
  display: flex;
  align-items: center;
  border: 1px solid black;
  border-radius: 50px;
  width: 255px;
}

#navn {
  margin-left: 20px;
  font-size: 16px;
}

span {
  font-size: 24px;
  font-weight: bold;
}
.navn {
  font-size: 20px;
}
ul {
  margin: 15px 0;
}
li {
  margin: 5px 0;
}
li,
p {
  font-size: 18px;
}

@media only screen and (max-width: 600px) {
  .info {
    flex-direction: column;
  }
  .pfp {
    margin: 0;
  }
  h1 {
    text-align: center;
  }
}
