@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

h1 {
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
}

.links {
  width: 500px;
  background-color: lightgray;
  margin: 2px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.container {
  display: flex;
}

.about {
  background-color: lightgray;
  margin: 2px;
}

.about p {
  margin: 10px;
}

.bilder {
  display: flex;
  width: 100%;
}

.bilder img {
  width: 50%;
}

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

li {
  margin-top: 4px;
  width: auto;
  background: lightskyblue;
  padding: 4px;
  border-radius: 20px;
}
