* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'open sans', sans-serif;
}

body {
    height: 100vh;
    background-color: rgb(220, 220, 220);
    display: flex;
    flex-direction: column;
    }

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: black;
    font-size: 1rem;
}

a:hover {
    color: skyblue;
}

/* HEADER */

header {
    position: relative;
    padding: 0 2rem;
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid black;
}

.navbar .logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
}


.navbar .toggle-botton {
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.button {
    background-color: black;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
}

.button:hover {
    scale: 1.05;
    color: white;
    background-color: skyblue;
}

.button:active {
    scale: 0.95;
}



/* responsive menu */
.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background: rgba(250, 250, 250, 0.9);
    border-radius: 10px;
    overflow: hidden;

}

.dropdown-menu.open {
    height: 240px;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu .button {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* RESPONSIVE DESGIN */
@media (max-width:600px) {

    .navbar .links,
    .navbar .button {
        display: none;
    }

    .navbar .toggle-botton {
        display: block;
    }

    .dropdown-menu {
        display: block;
    }
}

@media (max-width:500px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
}

/* Footer */
footer{
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 60px 10%;
}

ul{
  list-style: none;
}

.footer-col{
  width: 25%;
}

.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  text-transform: capitalize;
}

ul .kok:not(:last-child){
  margin-bottom: 8px;
}

ul .kok a{
  display: block;
  font-size: 19px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s;
}

ul .kok a:hover{
  color: white;
  padding-left: 2px;
}

.links2 a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: rgb(0, 0, 0);
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
  transition: 0.4s;
}

.links2 a:hover{
  color: #4d4f55;
  background-color: white;
}

@media(max-width: 740px){
  .footer-col{
      width: 50%;
      margin-bottom: 30px;
      text-align: center;
  } }

@media(max-width: 555px){
  .footer-col{
      width: 100%;
  }
}

/* videos */

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
  }
  
  .video {
    margin: 10px;
    max-width: 300px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  video {
    width: 100%;
    border-radius: 5px 5px 0 0;
  }
  
  @media screen and (max-width: 768px) {
    .gallery {
      justify-content: center;
    }
  }

.clock ,.footer-col{
    color: #ffffff;
    font-size: 10px;
    float: right;
}

h3{
  margin: 20px;
}

/* Slideshow boxen */
.slideshow-container {
  max-width: 1100px;
  position: relative;
  margin: auto;
  margin-top: 100px;
}

/* Position höger/vänster knapp */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position höger knapp */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* knapp färg */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* Fade */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

