* {
    margin: 0px;
    box-sizing: border-box;
    padding: 0px;
}

:root {
    font-size: 16px;
}

/*  */
/*  */
/*  */

.hero-header {
    font-family: 'Satoshi', sans-serif;
    font-weight: 400;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 20vh;
    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    z-index: 33;
}

.hero-header>h1 {
    font-size: 5rem;
    font-weight: 300;
    margin-top: 25rem;
    margin-bottom: 0;
}

.hero-header>p {
    margin-top: 1rem;
    width: 100%;
    max-width: 50rem;
    font-weight: 400;
    font-size: 24px;
    color: #555;
}


.actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.actions>button {
    padding: 16px 32px;
    font-size: 20px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    display: flex;
    position: relative;
    border-radius: 4px;
    border: 1px solid #d1d1d1;
    color: #000814;
    background: white;
}

button.primary {
    background: #04a972;
    border: 1px solid #04a972;
    color: white;
}

/*  */
/*  */
/*  */

#container {
    position: relative;
    background: black;
    height: 100vh;
    width: 100vw;
    /*   perspective: 1000px; */
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    /* background: radial-gradient(125% 125% at 50% 10%, #000 40%, #63e 100%); */
    background: white;
    transform: rotate(180deg);
}

#ide {
    position: absolute;
    z-index: 2;
    bottom: 2rem;
    left: 0;
    right: 0;
    background: black;
    height: 50vh;
    aspect-ratio: 16/9;
    /* transform-origin: top; */
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(30deg) scale(0.75);
    border-radius: 16px;
    margin: 0 auto;
    box-shadow: 0px 1px 8px 2px rgba(0, 0, 0, 0.15);
}

.scroll-content {
    height: 75vh;
    background: white;
}

.content {
    min-height: 400vh;
    background: black;
    width: 100%;
    height: 100%;
    z-index: 10;

}

.content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.content-wrapper>#ide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.content-wrapper>#logos {
    width: 100%;
    margin: 2.5rem;
}

.content-wrapper>.logos {
    opacity: 0;
    position: absolute;
    color: hsla(244, 6%, 75%, 1);
    display: flex;
    margin: 1rem;
    margin-top: 2.5rem;
    gap: 2rem;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.content-wrapper>.logos>h5 {
    font-weight: 300;
    font-family: 'Roboto Mono', 'Satoshi', sans-serif;
    font-size: 12px;
}

.content-wrapper>.logos>#logos-img {
    max-width: 95%;
}