body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    
    /*
    background-image: url(Pictures/Wooden-background.jpg);
    background-repeat: no-repeat;

    */
 }

#top {
    text-align:center;
}

#logo img {
    width:  400px;
    margin-top: 16px;
    margin-bottom: 16px;

}

#logo-name {
    color: grey;
    font-size: 32px;
    font-weight: bold;
    margin: 16px;
}

#navigation a {
    color: grey;
    padding: 8px;
}

#navigation a:hover {
    color: green;
}

#image img {
    width:  100%;
    margin-top: 16px;
    margin-bottom: 16px;

}
#main{
    max-width: 800px;
    margin: auto;
    padding: 16px;
}
#footer{
    text-align: center;
    color: grey;
    padding: 16px;
}

#footer a{
    color: grey;
}

#footer a:hover{
    color: green;
}


/*Bilderkarusell*/

.carousel {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  
  .carousel > ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: 200ms opacity ease-in-out;
    transition-delay: 200ms;
  }
  
  .slide > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .slide[data-active] {
    opacity: 1;
    z-index: 1;
    transition-delay: 0ms;
  }
  
  .carousel-button {
    position: absolute;
    z-index: 2;
    background: none;
    border: none;
    font-size: 4rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
    border-radius: .25rem;
    padding: 0 .5rem;
    background-color: rgba(0, 0, 0, .1);
  }
  
  .carousel-button:hover,
  .carousel-button:focus {
    color: white;
    background-color: rgba(0, 0, 0, .2);
  }
  
  .carousel-button:focus {
    outline: 1px solid black;
  }
  
  .carousel-button.prev {
    left: 1rem;
  }
  
  .carousel-button.next {
    right: 1rem;
  }
