html, body, #container {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    font-family: 'Roboto', 'Open Sans', 'Josefin Sans', 'Nunito', sans-serif;
    font-size: 1rem;
}

header {
    position:fixed;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

nav a {
    text-decoration: none;
    color: black;
    margin: 0 1rem;
    display: flex;
    align-items: center;
}

nav a svg {
    height: 60px;
}

nav div.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav div.dropdown {
    position: relative;
    display: inline-block;
}

nav div.dropdown a:hover {
    font-weight: 700;
}

nav div.dropdown a svg {
    height: 14px;
    width: 14px;
    margin-left: 5px;
}

nav div.dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: max-content;
    width: auto;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    padding: 7px;
    line-height: 21px;
}

nav div.dropdown .dropdown-content a {
    color: black;
    text-decoration: none;
    display: block;
    width: auto;
    margin: 4px auto;
    padding: 4px 12px;
    word-wrap: none;
}

nav div.dropdown:hover .dropdown-content {
    display: block;
}

nav div.dropdown:hover a svg {
    transform: rotate(180deg);
}

nav button.mobile-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

nav a.client-btn {
    background-color: black;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

#content {
    margin-top: 93px;
}

#hero {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 270"><defs><linearGradient id="grad" x1="0%" x2="92.5%" y1="0%" y2="100%"><stop offset="0%" stop-color="%23020024" /><stop offset="35%" stop-color="%23090979" /><stop offset="100%" stop-color="%2300D4FF" /></linearGradient></defs><path fill="url(%23grad)" fill-opacity="1" d="M0,224L26.7,224C53.3,224,107,224,160,213.3C213.3,203,267,181,320,192C373.3,203,427,245,480,256C533.3,267,587,245,640,224C693.3,203,747,181,800,192C853.3,203,907,245,960,240C1013.3,235,1067,181,1120,144C1173.3,107,1227,85,1280,101.3C1333.3,117,1387,171,1413,197.3L1440,224L1440,0L1413.3,0C1386.7,0,1333,0,1280,0C1226.7,0,1173,0,1120,0C1066.7,0,1013,0,960,0C906.7,0,853,0,800,0C746.7,0,693,0,640,0C586.7,0,533,0,480,0C426.7,0,373,0,320,0C266.7,0,213,0,160,0C106.7,0,53,0,27,0L0,0Z"></path></svg>') no-repeat center center;
    background-size: cover;
    height: 460px;
}

#hero h1 {
    position: relative;
    font-family: 'Josefin Sans', sans-serif;
    font-style: italic;
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    top: 50px;
    text-align: center;
    background-image: linear-gradient(68deg,#FF0EFB 0%, #FBFF00 73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero h2 {
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    top: 70px;
    text-align: center;
    background-image: linear-gradient(344deg,rgba(255, 0, 230, 1) 0%, rgba(0, 212, 255, 1) 73%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#hero h4 {
    display: block;
    position: relative;
    font-family: 'Nunito';
    font-size: 1.25rem;
    font-weight: 300;
    top: 90px;
    color: white;
    text-align: center;
    line-height: 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.features {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 2rem 0;
}

.features .featureCard {
    flex: 1;
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.features .featureCard .icon {
    background-image: linear-gradient(344deg,rgba(255, 0, 230, 1) 0%, rgba(0, 212, 255, 1) 73%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
}

.features .featureCard .icon svg {
    width: 28px;
    height: 28px;
    margin: 14px;
    filter: invert(1);
}

footer {
    background: #0f172b;
    display: flex;
    flex-direction: row;
    color: #fff;
}

footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

footer .row {
    flex: 1 1 50%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer .row .col {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem;
}

footer .col p {
    word-wrap: break-word;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.5rem;
}



@media (max-width: 768px) {
    nav a {
        margin: 0 0.5rem;
    }

    nav div.menu {
        display: none;
    }

    nav button.mobile-button {
        display: block;
    }

    #hero h1 {
        font-size: 1.75rem;
    }

    #hero h2 {
        font-size: 1.25rem;
    }

    #hero h4 {
        font-size: 1rem;
    }
}