*{
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
    background-color: #164357;
    letter-spacing: 3px;
    background-image: url("images/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.container {
    display: flex;
    margin-top: 40px;
    column-gap: 60px;
    text-align: left;
}

.col-container {
    min-width: 300px;
}

.menuIcon {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    cursor: pointer;
  }

.navBar {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 65px;
    left: 20px;
    padding: 10px;
    border-radius: 10px;
    background-color: #164357;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    transition: 0.8s;
}

.toggleNavBar {
    visibility: visible;
    opacity: 1;
}

.navBarA{
    font-size: 1.5rem;
}

.navBarHeader {
    font-size: 2.5rem;
}

.navBarUL {
    list-style: circle;
    padding-left: 30px;
    margin-top: 0;
}
  
.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: white;
margin: 6px 0;
transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
transform: translate(0, 11px) rotate(-45deg);
}

/* Fade out the second bar */
.change .bar2 {opacity: 0;}

/* Rotate last bar */
.change .bar3 {
transform: translate(0, -11px) rotate(45deg);
}

.searchBar {
    text-indent: 15px;
    font-size: 2rem;
    color: hsla(0, 0%, 0%, 0.80);
    width: 530px;
    padding: 5px;
    border-radius: 20px;
    border: none;
}

.searchBar:focus{
    outline: none;
    text-rendering: left;
}

.searchButton {
    font-size: 2rem;
    padding: 5px;
    border-radius: 20px;
    width: 50px;
    border: none;
    background-color: hsl(198, 61%, 9%);
    color: rgb(22, 67, 87);
    cursor: pointer;
    margin-right: 3px;
}

.searchButton:hover {
    background-color: hsl(198, 61%, 5%);
}

.title2 {
    font-size: 2.5rem;
}

li{
    margin-top: 10px;
}

ul {
    list-style: none;
}

a {
    color: white;
    text-decoration: none;
    font-size: 2rem;    
    font-weight: bold;
    margin-top: 20px;
}

a:hover {
    text-decoration: underline;
}

.logoDSEK {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 120px;
    width: 100px;
    padding: 5px;
}

@media only screen and (max-width: 768px){
    .container{
        position: absolute;
        display: flex;
        flex-direction: column;
        top: 0;
        left: 0;
        

    }

    .searchForm {
        visibility: hidden;
    }


    .title2 {
        font-size: 8px;
    }

    a{
        font-size: 6px;
    }

    li {
        max-height: 15px;
    }

    hr{
        max-width: 58px;
    }
    
}