@font-face {
    font-family: "Baby";
    src: url("./fonts/Baby.ttf") format('truetype');
  }
  
  @font-face {
    font-family: "BabyBold";
    src: url("./fonts/BabyBold.ttf") format('truetype');
  }
  
  * {
    transition: all 500ms ease;
  }
  
  html,
  body {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    font-family: "Baby", "Courier", "Verdana";
    height: 100%;
    width: 100%;
    margin: 0;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse at center, #093e9e 0%, #061c43 100%);
  }
  
  
  #headerBar {
    padding: 0.2em;
    background-color: #0934C1;
    color: #fff;
    font-family: "BabyBold", "Courier", "Verdana";
  }
  
  
  #popupBox {
    max-width: 30em;
    /*height: 10em;*/
    background-color: #ddd;
    overflow: auto;
    /* padding: 0.0em; */
    border-style: outset;
    border-width: 3px;
    margin: 15px;
  }
  
  #alertSymbol {
    display: inline-block;
    /* width: 25%; */
  }
  
  #alertSymbolImage {
    display: inline-block;
    width: 50%;
    margin-left: 25%;
    margin-right: 25%;
  }
  
  #alertTitle {
    display: inline;
  }
  
  #alertMessage {
    display: inline;
  }
  
  #alertMessageText {
    display: inline-block;
    /* width: 70%; */
  }
  
  #messageContent {
    background-color: #ddd;
    display: flex;
    flex-direction: column;
    padding: 10px 0px 0px 10px;
  }
  
  #exitWindow {
    display: inline;
    float: right;
  }
  
  #closeButtonContainer {
    text-align: right;
    padding: 5px;
  }
  
  #closeButton {
    margin: 0.1em;
    font-family: "BabyBold", "Courier", "Verdana";
    font-size: 1em;
    border-style: outset;
    cursor: pointer;
  }
  
  #exitWindowButton {
    padding: 0em 0.2em;
  }
  