html, body {
  margin: 0;
  padding: 0;
  height: 100%; 
}

body {
  font-family: sans-serif;
  color: white;
  background: url(bilder/backgroundpics/33mm.jpg) no-repeat center center fixed;
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  body {
    background: url(bilder/backgroundpics/picai.jpg) no-repeat center center fixed;
    background-size: cover;
  }
}


.icon-wrapper {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;      /* ikoner bredvid varandra */
  gap: 10px;          /* mellanrum mellan ikoner */
}

.top-icon {
  width: 40px;        
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;       
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

.top-icon:hover {
  opacity: 1;
}

.top-icon svg {
  width: 100%;
  height: 100%;
  fill: white;
}

