main{
    margin: 5px;
}

/* Username Code */
#demon{
    display: inline-block;
    /* background-color: hsl(210, 13%, 60%); */ /* use this to see the width + height of the box */
    width: 225px;
    height: 30px;
    line-height: 30px;
    border-radius: 12px;
    text-align: center;
    position: absolute;
    transform: translate(-10px, -6px);

    transition: color 0.2s, text-shadow 65ms;
}
#demon:hover{
    color: hsl(9, 100%, 28%);
    text-shadow: 1px 1px 0px black;
}

/* Popout Code */
.popout{
    display: block;
    pointer-events: none;
    position: relative;
    width: 200px;
    height: 200px;
    transform: translateX(1vh);
    border-radius: 100%;

    opacity: 0%;
    transition: opacity 247ms;
}
#demon:hover .popout {
    display: block;
    position: relative;
    width: 200px;
    height: 200px;
    transform: translateX(1vh);
    border-radius: 100%;

    opacity: 100%;
    pointer-events: auto;
}
.block{
    visibility: hidden;
}