/* style.css */
body {
  font-family: "Jolly Lodger", system-ui;
  letter-spacing: 1px;
  background-color: #000000;
  color: #656565;
  margin: 0;
  padding: 0;
  text-align: center;
}

header, footer {
  background-color: #333;
  color: white;
  padding: 10px; 
}
footer {
    margin-top: 30px;
}

h1 {
  transition: color 0.3s ease;
}

h1:hover {
  color: #3b160a; /* Hover-effekt */
}

img {
  margin-top: 1rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
  width: 20%;
}

img:hover {
  transform: scale(1.01);
}

h3 {
    margin: 0;
}

ul {
    width: auto;
    margin: 0;
    text-align: left;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lk1 {
    border-width: 1px;
    border-style: dotted;
    border-color: #333;
}

.name {
    margin-left: 10px;
    margin-right: 10px;
}