html,
body,
#connect-wallet {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#connect-wallet button {
    margin: 0 auto;
    align-items: center;
}

#signin {
    flex-direction: column;
}

button,
select {
    display: block;
    padding: 4px;
    margin: 4px;
}

.selectGroup {
    display: flex;
    align-items: center;
}

label {
    font-size: small;
    width: 20%;
}

#peep-ui,
#done {
    width: 100%;

}

#done {
    flex-direction: column;
    justify-content: center;
}

#peep-image svg {
    max-width: 100%;
    height: 100vh;
}

#curate {
    display: inline;
}

.hidden {
    display: none !important;
}

.flex {
    display: flex;
}

a.tooltip {
    position: relative ;
    cursor: pointer;
}
a.tooltip:hover::after {
    content: attr(data-tooltip) ;
    font-size: 12px;
    position: absolute ;
    top: 2em ;
    right: 1em ;
    min-width: 200px ;
    border: 1px #808080 solid ;
    padding: 8px ;
    color: black ;
    background-color: #fff ;
    z-index: 1 ;
    white-space: pre-line;
} 