body {
    width: 100%;
    height: 100vh;
    margin: 0px;
    font-family: Figtree;
}

nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding: 20px 32px;
    gap: 28px;
    margin: 0px;
    position: fixed;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(30px);
    z-index: 1;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover {
    color: #FFFFFF;
}

main {
    background-color: #000000;
    color: #FFF;
    display: flex;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

h1 {
    font-family: "IBM Plex Sans";
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    letter-spacing: -1.92px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: -10px;
    text-align: center;
}

.buttonfill {
    display: flex;
    height: 20px;
    padding: 12px 19px;
    justify-content: center;
    align-items: center;
    background-color: #5935FB;
    border-radius: 200px;
    color: white;
    transition: 0.3s;
}

.buttonoutline {
    display: flex;
    height: 16px;
    padding: 12px 19px;
    justify-content: center;
    align-items: center;
    border-radius: 200px;
    color: #5935FB;
    border: 2px solid #5935FB;
    transition: 0.3s;
}

.buttonfill:hover {
    background-color: #FFFFFF;
    color: #000000;
}

.buttonoutline:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid white;
}

.cards1 {
    display: flex;
    padding: 20px;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 20px;
    align-self: stretch;
    flex-wrap: wrap;
}

.omniacard {
    display: flex;
    color: white;
    min-width: 300px;
    max-width: 740px;
    height: 600px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    background-color: #000000;
    border-radius: 20px;
    background-image: url(/images/home/omnia-cards.png);
    background-size: cover;
    background-position-x: center;
    transition: 0.3s;
    flex: auto;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    flex: 1 1 0;
    box-sizing: border-box;
}

.fusiona1card {
    flex: 1 1 0;
    min-width: 300px;
    max-width: 740px;
    height: 600px;
    border-radius: 20px;
    box-sizing: border-box;
    padding-left: 20px;
    padding-left: 20px;
    padding-top: 10px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background-image: url(/images/home/fusiona1cards.png);
    background-size: cover;
    background-position-x: center;
    transition: 0.3s;
}


.omniacard:hover {
    scale: 1.02;
}

.fusiona1card:hover {
    scale: 1.02;
}