* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    transition: 0.2s ease-in-out;
    overflow-x: hidden;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-drag: none;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    background: rgb(21, 21, 22);
}

#topbar {
    width: 100%;
    height: 12vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(21, 21, 22, 0.5);
    backdrop-filter: blur(40px);
}

#company-brand {
    display: flex;
    align-items: center;
}

#company-brand img {
    width: 40px;
    height: 40px;
}

#company-brand span {
    margin-left: 10px;
    font-size: 20px;
    color: white;
    font-weight: 500;
}

#topbar-items {
    width: 40vw;
    height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#topbar-items ul {
    background: rgb(31, 31, 33);
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 5px;
}

#topbar-items ul li {
    background: rgb(31, 31, 33);
    padding-inline: 15px;
    padding-block: 8px;
    border-radius: 100px;
    color: white;
}

#topbar-items ul li:hover {
    background: rgb(48, 48, 51);
    padding-inline: 20px;
    padding-block: 8px;
    border-radius: 100px;
    color: white;
    cursor: pointer;
}

#topbar-items ul .separator {
    width: 1px;
    height: 20px;
    background: rgb(81, 81, 87);
    padding: 0px;
}

#topbar-items ul .separator:hover {
    width: 1px;
    height: 20px;
    background: rgb(81, 81, 87);
    padding: 0px;
    cursor: auto;
}

#topbar-actions ul {
    width: 15vw;
    display: flex;
    height: 12vh;
    align-items: center;
    justify-content: center;
}

#topbar-actions ul li {
    height: fit-content;
    background: blue;
    padding-inline: 15px;
    padding-block: 8px;
    border-radius: 100px;
    color: white;
    font-weight: 500;
}

#topbar-actions ul li:hover {
    padding-inline: 20px;
    padding-block: 8px;
    cursor: pointer;
    box-shadow: 0px 2px 25px blue;
}

#banner-main {
    height: 80vh;
    background: rgb(0, 0, 0);
}

#banner-main .content {
    width: 100%;
    height: 80vh;
    position: absolute;
    display: flex;
    align-items: center;
    backdrop-filter: blur(15px);
    background: #0000006c;
}

#banner-main .content .left {
    width: 50%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    color: #fff;
}

#banner-main .content .left img {
    width: 150px;
    height: 100x;
    object-fit: contain;
    margin-bottom: 20px;
}

#banner-main .content .left h1 {
    text-decoration: underline;
    font-size: 45px;
}

#banner-main .content .left p {
    width: 400px;
    text-align: center;
    font-size: 20px;
}

#banner-main .content .right {
    width: 50%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#banner-main .content .right img {
    width: 600px;
    height: 400px;
}

main {
    padding-top: 12vh;
}

footer {
    width: 100%;
    height: 80vh;
    background: #000;
    margin-top: 40px;
}