/*Noto Sans font from file*/
@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 100, 200, 300, 400, 500, 600, 700, 800, 900;
    src: url(Noto_Sans/NotoSans-VariableFont_wdth\,wght.ttf) format("truetype");
}

* {
    /* box-sizing: border-box; */
    font-family: 'Noto Sans', sans-serif;

}



/*HEADER*/

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    position: relative;
    top: 0;

    height: 50px;
    padding: 7px;
    /* border: 3px solid black; */
    color: black;

    margin: 20px auto;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
}

/*GLOBAL STYLING*/

ul {
    list-style: none;
}

/*END GLOBAL STYLING*/


/*DEMO*/

#demo-body {
    background: linear-gradient(90deg, rgb(218 225 225) 0%, rgb(255 196 109) 71%, rgb(234 243 243) 100%);
}

#demo-body header {
    flex-direction: column;
    justify-content: center;
    height: auto;
    border: none;
    margin: 20px auto;
    font-weight: 600;
}

#demo-body header img {
    height: 120px;
    width: 120px;
}

#demo-body #sub-text {
    font-size: 1.1rem;
    position: relative;
    bottom: 17px;
}



#demo-content {
    box-shadow: 0 6px 20px rgb(0 0 0 / 1);
    border-radius: 20px;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    width: 320px;
    height: 180px;
}


iframe {
    border: none;
    width: 320px;
    height: 180px;

}

#interest-div {
    width: 300px;
    margin: 30px auto 10px auto;
    border: 2px dashed;
    padding: 5px 10px;
    text-align: center;
    font-weight: 700;
    background-color: #e5dccf;
}


#interest-div a {
    display: block;
    margin: 20px auto;
    color: black;
}

/*
#interest-form {
    width: 300px;
    margin: 20px auto;
    border: 2px dashed;
    padding: 0px 10px;
    background-color: #e5dccf;
}

#interest-form p {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

#interest-form input {
    height: 20px;
    background-color: #ede9e4;
    border: 1px solid black;
}

#interest-form #org {
    width: 180px;
}

#interest-form #email {
    margin-top: 5px;
    width: 236px;
}

#interest-form button {
    font-size: 1.1rem;
    width: 150px;
    height: 40px;
    background-color: var(--action);
    margin: 20px auto 10px auto;
} */

#legal-stuff {
    width: 300px;
    margin: 20px auto;

}

#legal-stuff ul {
    padding: 0px;
}

#legal-stuff li {
    text-align: center;
}


#legal-stuff li a {
    color: black;
    font-weight: 600;
}

.linked img {
    height: 50px;
    width: 50px;
}

#share {
    width: 300px;
    margin: 20px auto;
    text-align: center;
}

#share span {
    display: inline-block;
    position: relative;
    bottom: 17px;
    font-weight: 600;
}


/*END DEMO*/


/*tablets*/
@media only screen and (min-width: 681px) and (max-width: 1069px) {

    /*DEMO*/

    #demo-content {
        width: 640px;
        height: 360px;
    }


    iframe {
        width: 640px;
        height: 360px;
    }


    /*END DEMO*/

}


/*small desktop and everything beyond...*/
@media only screen and (min-width: 1070px) {

    /*DEMO*/

    #demo-content {
        width: 1024px;
        height: 576px;
    }

    iframe {
        width: 1024px;
        height: 576px;
    }


    /*END DEMO*/

}