body {
    font-family: "Jost*", sans-serif;
    background-color: #fff7ee;
    padding: 0;
    margin: 0;
}

#main-container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#content {
    max-width: 90vw;
}

#header {
    margin-top: 64pt;
    max-width: 1000px;
}

#logo {
    font-weight: 500;
    opacity: 0.65;
    font-size: 20pt;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

h2 {
    font-weight: 200;
    font-size: 24pt;
    font-family: "Playfair Display", serif;
    text-align: center;
}

h3 {
    font-weight: 500;
    margin: 4px;
    font-size: 16pt;
}

h4 {
    font-family: "Playfair Display", serif;
    text-align: center;
    font-size: 20pt;
}

#header-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4671ec;
}

#header-bullets :nth-child(1) {
    opacity: 1;
}
#header-bullets :nth-child(2) {
    opacity: 0.85;
}
#header-bullets :nth-child(3) {
    opacity: 0.7;
}


#feature-fan :nth-child(1) {
    transform: translateX(calc(-0.4 * min(100vw, 1200px))) translateY(5vh) rotateZ(-24deg) ;
}
#feature-fan :nth-child(1):hover {
    transform: translateX(calc(-0.4 * min(100vw, 1200px))) translateY(5vh) rotateZ(-22deg) scale(1.2);
}
#feature-fan :nth-child(2) {
    transform: translateX(calc(-0.3 * min(100vw, 1200px))) translateY(5vh) rotateZ(-8deg) ;
}
#feature-fan :nth-child(2):hover {
    transform: translateX(calc(-0.3 * min(100vw, 1200px))) translateY(5vh) rotateZ(-7deg) scale(1.2);
}
#feature-fan :nth-child(3) {
    transform: translateX(calc(-0.1 * min(100vw, 1200px))) translateY(5vh) rotateZ(5deg) ;
}
#feature-fan :nth-child(3):hover {
    transform: translateX(calc(-0.1 * min(100vw, 1200px))) translateY(5vh) rotateZ(4deg) scale(1.2);
}
#feature-fan :nth-child(4) {
    transform: translateX(calc(0.1 * min(100vw, 1200px))) translateY(10vh) rotateZ(15deg);
}
#feature-fan :nth-child(4):hover {
    transform: translateX(calc(0.1 * min(100vw, 1200px))) translateY(10vh) rotateZ(13deg) scale(1.2);
}

#feature-fan {
    margin-top: 30px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 90vw;
    height: calc(0.75 * min(100vw, 800px));
}

.feature-fan-image {
    position: absolute;
    top: 0;
    left: 50%;
    transition: all .2s ease-in-out;
    filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.1));
}

.feature-fan-image:hover {
    z-index: 99 !important;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.3));
}

.intro-step {
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    row-gap: 8px;
    flex-direction: column;
    max-width: calc(min(90vw, 400px));
}

.intro-step-number {
    width: 30px;
    height: 30px;
    background-color: rgb(70, 113, 236);
    color: white;
    border-radius: 15px;
    line-height: 30px;
    text-align: center;
}

.intro-step-header {
    font-weight: 500;
    margin-top: 6px;
}

.intro-step img {
    border-radius: 16px;
    overflow: hidden;
    max-height: 150px;
    object-fit: cover;
}

#pricing-carousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.pricing-shadow {
    width: 25%;
    height: 240px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.pricing-free {
    width: calc(min(max(45%, 300px), 90vw));
    background-color: rgb(70, 113, 236);
    border-radius: 16px;
    color: white;
    padding: 16px 24px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.pricing-bullet svg {
    width: 16px;
    padding: 2px;
    height: 16px;
    background-color: rgba(255, 255, 255, 0.45);
    border-radius: 7px;
    flex-shrink: 0;
}

.pricing-bullet {
    margin-top: 4px;
    display: flex;
    flex-direction: row;
}

.pricing-bullet div {
    margin-left: 12px;
}

#button-open-app {
    position: fixed;
    cursor: pointer;
    font-weight: 500;
    color: rgb(70, 113, 236);
    top: 0;
    left: 0;
    right: 0;
    height: 36pt;
    height: 36pt;
    background-color: rgb(245, 240, 239);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: all .2s ease-in-out;
}
#button-open-app:hover {
    color: rgba(255, 255, 255, 0.85);
    background-color: rgb(70, 113, 236);
}
#button-open-app div {
    transition: all .2s ease-in-out;
}
#button-open-app:hover div {
    transform: scale(1.2);
}

.large-button {
    border-radius: 8pt;
    background-color: rgb(70, 113, 236);
    color: white;
    height: 32pt;
    cursor: pointer;
    transition: all .25s;
    font-weight: 500;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.large-button:hover {
    color: rgba(255, 255, 255, 0.85);
    background-color: #3a65e1;
    box-shadow: rgba(70, 113, 236, 0.4) 0px 15px 30px -12px;
}

.large-button:active {
    box-shadow: none;
}