.asciiArt {
    font-family: SFMono-Regular,Menlo,Monaco,Consolas,'Liberation Mono','Courier New',monospace;
    font-size: medium;
    line-height: 1.5;
    font-size:16px;
    margin: 0;
    white-space: pre;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: fit-content;
    background-color: black;
    color: white;
}

.asciiContainer {
    position: absolute;
    overflow: hidden;
}

.popupOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    z-index: 150;

    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slideOutTop {
    background: #111;
    color: #fff;
    padding: 20px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-top: -100%;
    transition: margin-top 0.5s ease;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.popupOverlay.active {
    visibility: visible;
    opacity: 1;
}

.popupOverlay.active .slideOutTop {
    margin-top: 50px;
}

.popupOverlay.closing .slideOutTop {
    margin-top: -100%;
}

.popupOverlay.closing {
    opacity: 0;
}
/**
 * 
 * #salamander {
    display: inline-block;
    width: calc(16px * 3);
    height:calc(1em *5);
    vertical-align: middle;
}
 */

#salamander2 {
    width: 4ch;
    vertical-align: bottom;
    z-index: 100;
    position: absolute;
    top: 19rem;
    left: 14ch;
}

#FizzyLink {
    z-index: 100;
    position: absolute;
    top: 2.7rem;
    left: 65ch;
}

#FizzyLink .TooltipText {
    top: 50%;     
    left: 110%;   
    transform: translateY(-50%);
    width: 200px;  
    white-space: normal; 
    text-align: left;
}

.ConstructionSign {
    position: relative;
    color: inherit;
}

.Tooltip {
    position: relative;
    color: inherit;
    
}


button.Tooltip {
    background: none;
    text-decoration: underline;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.TooltipText {
    display: inline-block;
    visibility: hidden;
    width: fit-content;
    background: grey;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 100;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    white-space: nowrap;
    font-family: "Crimson Pro";
}

.Tooltip:hover .TooltipText {
    visibility: visible;
    opacity: 1;
}

.ConstructionSign:hover .TooltipText {
  visibility: visible;
  opacity: 1;
}

#SongTitle {
    display: inline-block;
    max-width: 15ch;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: bottom;
}

#SongTitle span {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 8s linear infinite;
}

@keyframes scrollText {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

.slideOutTop h2 {
    font-family: "Pirata One";
    font-size: 70px;
}

.drinkShelf {
    background-color: #B07C4F;
    
}

.drinkLayout {
    display: inline-flex;
    padding: 5px 5px 0px 5px;
    border-left: #fff;
    border-radius: 2px;
    position: relative;
    font-family: "Crimson Pro";
    
    
}

.drinkLayout:hover .drinkInfo {
    visibility: visible;
    opacity: 1;
}

.drinkInfo {
    display: inline-block;
    visibility: hidden;
    width: 150px;
    height: fit-content;
    white-space: normal;
    background-color: grey;
    text-align: left;
    border-radius: 5px;
    padding: 4px;   
    position: absolute;
    z-index: 200;
    top: 50%;  /*Make it aligned to the thing next to it */
    left: 100%; /*Make it to theright of the prev object */
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-family: "Crimson Pro";
    
}

.buttonLink {
    background: none;
    text-decoration: underline;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
    color: inherit;
    font-family: "Crimson Pro";
}