:root {
  --clickedOpacity: 1;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: black;
}
canvas {
  display: block;
  z-index: 1;
}

#title {
  font-family: "EditorialNewUltrabold";
}

#widget {
  z-index: 4;
  position:absolute;
  bottom:10px;
  left:10px;
  border-style: solid;
  border-width: 1px;
  border-color: white;
  transition: all 0.5s ease-in-out;
}

.minimized:hover{
  opacity:1;
}

#widgetIcon:hover{
  cursor:help;
}

a {
  color:white;
}

.minimized {
  border-radius:15px;
  opacity:0.7;
  width:30px;
  height:30px;
}

.expanded {
  width:250px;
  height:20em;
  opacity:1;
}

.scaleUp{
  transform-origin:center;
  transform: scale(2);
}

.scaleUpCorner{
  transform-origin:bottom left;
  transform: scale(2.5);
  background-color:black;
}

#widgetIcon {
  font-family: "EditorialNew";
  font-size: 1.5em;
  position:absolute;
  bottom:-0.1em;
  left:0.5em;
  color:white;
  transition: all 0.2s ease-in-out;
  text-align:center;
  margin:0;
  padding:0;
}

#widgetText {
  font-family: "EditorialNew";
  font-size: 0.9em;
  color:white;
  padding:0.5em;
  line-height:105%;
}

.minimizedIcon {
  opacity:1;
  overflow:hidden;
}

.hiddenIcon {

}

.minimizedText {
  opacity:0;
  height:0;
  padding:0;
  overflow:hidden;
}

.fadedOutText {
  opacity:0;
}

.expandedText {
  height:19.6em;
  overflow:hidden;
}

#container {
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
}

#content {
  color: white;
/*   background-color: rgba(0, 0, 0, 0.7); */
  border-style: none;
  border-width: 1px;
  border-color: white;
  width: min(99vw, 99vh, 400px); 
  height: min(99vw, 99vh, 400px);
}

#alertTextContainer {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.fader {
  transition: opacity 1s ease-in-out;
}

.fadeInOut {
  animation: pulse 3s infinite ease-in-out;
}

.fadeOut {
  opacity:0;
}

.fadeIn {
  visibility:visible;
  opacity:1;
}

.hidden {
  visibility:hidden;
  opacity:0;
  height:0;
}


@keyframes pulse {
  0% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}


.alertText {
  font-family: "EditorialNew";
  font-size: 2em;
  text-align:center;
  margin:0;
  padding:0;
}
p{
  margin-top:0;
}