/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 10px 20px 10px 20px;
    box-sizing: border-box;
    z-index: 1000;
    padding: 30px;
    background-color: black;
}
#header.scrolled {
    backdrop-filter: blur(10px);
    background-color: black;
  }

#logoHeader {
    width: clamp(120px, 8vw, 140px);
    display: block;
}

#content {
    display: flex;
    flex-direction: column;
    margin-top: 100px;
    padding: 50px;
    font-family: "Assistant", sans-serif;
}

@media (max-width: 768px) {
     #content {
        padding: 10px;
     }
}

#content p {
    font-size: clamp(16px, 3vw, 18px);
}