*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
}

.scrolldown {
    position: fixed;
    bottom: 6%;
    right: 4%;
    z-index: 999;
  }
  
  .scrolldown i {
    display: block;
    padding: 12px;
    font-size: 25px;
    color: white;
    background: #166bc5;
    border-radius: 30px;
    transition: all .50s ease;
    cursor: pointer;
  }
  
  .scrolldown i:hover {
    transform: translateY(-3px);
  }
  
  .scrolldown-upside-down i {
    transform: rotate(180deg);
  }
  
  .scrolldown-upside-down:hover i {
    transform: rotate(180deg);
  }
  
  
header {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2.5%;
    background: rgba(44, 133, 234, 0.807);
    border-radius: 25px;
}
body{
    background: white;
}
.logo{
    font-size: 30px;
    font-weight: 700;
    color: white;

}
.navlist{
    display: flex;
}
.navlist a{
    color: white;
    margin-left: 60px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .60s ease;
}
.navlist a:hover{
    border-bottom: 2px solid white;
}
#menu-icon{
    color: white;
    font-size: 30px;
    z-index: 10001;
    cursor: pointer;
    display: none;
}

.impressum{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #166bc5 0%, #003d7e 28.53%, #56a8ff 75.52%);
    color: white;
    word-wrap: break-word;
}
section{
    padding: 130px 15% 0;
}


@media (max-width: 1107px){
    #menu-icon{
        display: block;
    }
    .navlist{
        position: absolute;
        top: 100%;
        right: -100%;
        width: 245px;
        height: 300px;
        background: #257edd;
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 30px 20px;
        transition: all .55s ease;
        overflow-y: auto;
        border-radius: 20px;
    }
    .navlist a{
        margin-left: 0;
        display: block;
        margin: 7px 0;
    }
    .navlist.open{
        right: 0;
    }
}