@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

html {
    color: black;
    background: white;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    font-size: x-large;
}

canvas {
    width: 100vw;
    height: 100vh;
    z-index: -1;
  }

#dnlzqn_img {
    width: 2.1rem;
}

img,
video {
    margin: 0 auto;
    width: 100vw;
}

section {
        display: flex;
    flex-direction: column;
}

section div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.cienvw{
    width: 100vw;
    width: 100%;
}

section div img {
    width: 50vw;
    width: 50%;
}

.info {
    font-size: xx-large;

}

h3 {
    font-weight: normal;
}

h3, p {
    margin: .5rem;
}

.vid_margin {
    margin: .5rem 0;
}

a {
    text-decoration: none;
}

a:visited {
    color: blueviolet;
}

code {
    word-break: break-all;
}

.link {
    text-decoration: underline;
    margin-left:.15em
}

.arrow_link {
    text-decoration: none;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: .5rem;
}

.grid video {
    width: 50vw;
    width: 50%;
}

.emergence .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.5rem;
    margin: 0.5rem;
} 

.emergence .grid video {
    width: 100vw;
    width: 100%;
}

.emergence .grid img {
    width: 100%;
}

@media only screen and (min-width: 740px) {
    html {
        font-size: xx-large;
    }

    .info {
        font-size: xxx-large;

    }

    .emergence .grid {
        grid-template-columns: 1fr 1fr;
    }

} 
