body {
    font-family: Arial, Helvetica, sans-serif; 
  }
  *{box-sizing:border-box;}
  /*kode til navigationsbar*/
  .navbar {
    overflow: auto; /*auto gør så man på en lille skærm kan scrolle*/
    background-color: #2B2929; 
 
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: #FBF9F9;
    text-align: center;
    padding: 10px 10px; 
    text-decoration: none;
  }
  
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  .dropdown .dropbtn {
    font-size: 20px;  
    border: none;
    outline: none;
    color: #FBF9F9;
    padding: 20px 16px; /* dette ændre padding på links i navbar*/
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #0083C4; 
  }
  
  .dropdown-content {
    display: none;
    position: absolute; /*lavet for at links/siderne vil være under deres menupunkt*/
    background-color: #0083C4;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
    z-index: 1; 
  }
  
  .dropdown-content a {
    float: none;
    color: #FBF9F9;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  .dropdown-content a:hover {
    background-color: #005078;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

  /*kode til header tekst*/
  h1{
      color: #2B2929;
  }

  .txt-header{
    color: #2B2929;
    margin-left: 10px;
    margin-bottom: -10px; /*for at få teksterne tættere på hinanden*/
  }

  .txt-free{
      color:#c46d00;
      font-style: italic;
      padding-left: 20px;
  }
  
  /*kode til hold*/
  .overall-teams1{
      display: flex;
  }

  .title-teams{
      margin-left: 10px;
      color: #2B2929;
      position: relative;
      left: 4%;
  }

  .title2-teams{
    color: #FBF9F9;
    font-size: 20px;
  }

  .txt-teams{
    line-height: 1.8;
    color: #FBF9F9;
  }
/*stole yoga*/
#stole-yoga-container{
    padding: 10px;
    margin-right: 2.5%;
 }

  .container-1{
    width: 300px;
    height: 150px;
    background-color:#0083C4;
    padding-left: 10px;
    padding-top: 5px;
    position: relative;
    left: 5%;
  }

/*dans og fitness*/
#ballroom-container{
    padding: 10px;
    margin-right: 2.5%;
}
.container-2{
    width: 300px;
    height: 150px;
    background-color:#c46d00;
    padding-left: 10px;
    padding-top: 5px;
    position: relative;
    left: 5%;
}

/*udendørs og indendørs træning*/
#indoor-training-container{
    padding: 10px;
    margin-right: 2.5%;
}

.container-3{
    width: 300px;
    height: 150px;
    background-color:#005078;
    padding-left: 10px;
    padding-top: 5px;
    position: relative;
    left: 5%;
}
/*Kode til footer*/
.container-footer{
  max-width: 1170px;
  margin: auto;
}

.row{
  display: flex;
  flex-wrap: wrap;
}

.footer{
  background-color:#2B2929;
  padding: 70px 0;
  
}

.footer-col{
  width: 25%;
  padding: 0 15px;
  color: #FBF9F9;
  line-height: 1.5;
}

.footer-col h4{
  color: #FBF9F9;
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 500;
  position:relative;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: #0083C4;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}

.footer-col a:not(:last-child){
  margin-bottom: 10px;
}

.footer-col a{
  color: #0083C4;
  display: block;
  transition: all 0.3s ease;

}

.footer-col a:hover{
  color: #0083C4;
  padding-left: 8px;
}

/*responsive*/
@media(max-width:767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
  }
}

@media(max-width:574px){
  .footer-col{
    width: 100%;
  }
}

