* {
    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%;
  }
}

/* video */

.video1{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px;
}



@media(max-width: 530px){
        .video1 {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 20px;
            text-align: center; 
        }
        
        .video1 {
            max-width: 100%; 
            max-height: 100%; 
        }
    }


/* sticky bilder */

.nyheter{
    padding-left: 10px;
}

.gallery{
    background-color: #a7a7a7;
    border: 1px solid #000000;

}

.gallery img{
    width: 100%;
    height: auto;
}

.des{
    padding: 15px;
    text-align: center;
}

.responsive {
    margin-bottom: 20px;
    padding: 0 6px;
    float: left;
    width: 25%;
}

@media only screen and (max-width: 700px){
    .responsive{
        width: 50%;
        
    }
}

@media only screen and (max-width: 500px){
    .responsive{
        width: 100%;
        margin: 6px 0;
        
    }
}

/* lilla al fadji bilder */

.poddcast{
    padding-left: 10px;
}

.boxarna{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.box1{
    margin-left: 10px;
    height: 200px;
    width: 200px;
}

.box2{
    margin-right: 10px;
    height: 200px;
    width: 550px;
    background-color: #a7a7a7;
}

.box2 ,p ,h3{
    text-align: center;
    padding: 20px;
}

@media(max-width: 540px){
    .box2 ,p ,h3 {
        font-size: 10px;
    }}