@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

:root{
    --fallback-fonts: "Helvetica Neue",-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans",sans-serif;
    --font-monospace: "Roboto Mono",var(--fallback-fonts);
    --font-monospace-bold: "Roboto Mono",var(--fallback-fonts);
    --font-sans: "Inter", var(--fallback-fonts);
    --font-sans-bold: "Inter", var(--fallback-fonts);
    --font-display: "ABC Maxi Sharp",var(--fallback-fonts);
}

*{
    padding: 0;
    margin: 0;
    color: rgb(0, 0, 0);
}

html{
    background-color: #FFFEF9;
}

.top{
    position: absolute;
    left: 30px;
    top: 10px;
    z-index: 2;
}

.top img{
    width: 40px;
}

h2{
    font-family: var(--font-monospace);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .18px;
    line-height: 28px;
}

h3{
    font-family: var(--font-monospace);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 22px;
}

.go button:hover{
    filter: brightness(1.1);
}

.select select:hover{
    background-color: #f2f1ec;
}

.select select {
    padding: 8px 24px;
    font-size: 16px;
    border: 1px solid #ccc;
    width: 165px;
    border-radius: 8px;
    margin-right: 10px;
    height: 45px;
    transition: 0.3s;
    
    font-family: var(--font-monospace);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 22px;

    -webkit-appearance: none;
    -moz-appearance: none;
    background: url(dropdown.png);
    background-repeat: no-repeat;
    background-position: 110px;
}

.go button{
    float: right;
    background: linear-gradient(90deg,#6f47eb 9.71%,#477deb 92.01%);
    border-radius: 8px;
    padding: 8px 24px;
    color: white;
    width: 165px;
    border-radius: 8px;
    height: 45px;
    align-items: center;
    transition: 0.3s;

    font-family: var(--font-monospace);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 22px;
}

a{
    color: #4f4ccc;
    text-decoration: underline;
}
a:hover{
    filter: brightness(1.1);
    text-decoration: underline;
}

@media (min-width:761px){

    h1{
        font-family: var(--font-sans-bold);
        font-size: 56px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 64px;
    }

    .container{
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(100px, 100px);
        width: 100vw;
        margin: auto;
        display: flex;
    }

    .left  {
        padding: 48px;
        width: 50%;
        display: flex;
        height: 85vh;
    }

    .holder{
        display: inline-block;
        align-self: flex-end;
        overflow-y: hidden;
    }

    .interactive{
        display: flex;
        align-items: center;
        width: 100%;
    }

    .select select {
        float: left;
    }

    .go button{
        float: right;
    }


    .right{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        vertical-align: middle;
        width: 50%;
        border-left: 1px solid #e9dcc3;
        background-color: #E7F7FF;
    }

    .right video {
        position: absolute;
        width: calc(45% - 10px);
        max-height: unset;
        position: absolute;
        object-fit: cover;
        z-index: 0;
    }
}

@media (max-width:760px){

    h1{
        font-family: var(--font-sans-bold);
        font-size: 30px;
        font-weight: 600;
        letter-spacing: 0;
        line-height: 40px;
    }

    .right{
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100vw;
        height: 400px;
        border-bottom: 1px solid #e9dcc3;
        background-color: #E7F7FF;
        text-align: center;
        overflow: hidden;
    }

    .right video {
        height: 350px;
        object-fit: cover;
        z-index: 0;
        margin:auto;
        overflow: hidden;

        position: relative;
        left: 50%;
        top: 30px;
        transform: translateX(-50%);
    }

    .left{
        position: absolute;
        top: 400px;
        padding: 30px;
        max-width: calc(100vw - 60px);
    }

    .select{
        margin-bottom: 10px;
    }

    .go{
        position: absolute;
        left: 30px;
    }



}