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

body {
    background: black;
    color: white;
    font-family: 'Roboto Mono';
    overflow: hidden;
}

/* main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
} */

header {
    background: transparent;
    padding: 20px;
    position: fixed;
}

#image-modal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255, 0.95);
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;

}

#image-modal p {
    text-align: center;
    padding: 20px;
    mix-blend-mode: normal;

    color:black;


}

#target-image {
    opacity: 100%;
    width: 80%;
    max-width: 600px;
    height: auto;
    border: 2px solid white;
    max-height: 60vh;
    object-fit: cover;
}



p.instructions { 
    font-size: 0.8rem;
    font-weight: 100; 
    opacity: 0.6;
}

p.info {
    /* position: fixed;
    top: 40px;
    right: 40px; */
    z-index: 3;
}


canvas {
    vertical-align: bottom;
    z-index:1;
    background-color: black;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    z-index: 20;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%; 
    flex-wrap: nowrap;
    gap: 4px;
    text-align:center;

}

.bottom-bar a {
    color: white;
    text-decoration: none; 
}

h1,a,p {
    mix-blend-mode: difference;
}

.btn {
    padding: 5px 15px;
    border: 2px solid white;
    border-radius: 5px;
    cursor: pointer;
}

/* nav {
    background-color: black;
    z-index: 100;
    height:100px;
    position: fixed;
    top:0;
    width: 100%;
    border-bottom: 1px solid white;
} */