/*!*************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js!./src/index.scss ***!
  \*************************************************************************************************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

#dialogue {
  position: absolute;
  text-align: center;
  top: 200px;
  z-index: 100;
  margin-left: 30%;
  padding-top: 10px;
  padding-bottom: 10px;
  display: block;
  color: white;
  font-size: 30px;
  width: 40%;
  background-color: black;
  border-radius: 5px;
  background-color: #8f77a6;
  border: 2px solid black;
}

#nav-links {
  position: absolute;
  margin-left: 1%;
  top: 1%;
}
#nav-links img {
  width: 30px;
  background-color: white;
  border-radius: 3px;
  padding: 3px;
  border: 1px solid black;
}

.info {
  position: absolute;
  margin-left: 5px;
  padding: 5px;
  margin-top: 5%;
  background-color: whitesmoke;
  padding-right: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 3px;
  font-size: 20px;
}
.info .dropdown-info {
  border-style: solid;
  border-width: 3px;
  padding-top: 10px;
  display: none;
  width: 250%;
  position: absolute;
  background-color: whitesmoke;
  padding: 5px;
  padding-right: 50px;
}
.info .dropdown-info li {
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

.info:hover .dropdown-info {
  margin-top: 5px;
  display: block;
  border-radius: 5px;
}

.fade-in {
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
  -moz-animation: fadeIn ease 1s;
  -o-animation: fadeIn ease 1s;
  -ms-animation: fadeIn ease 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.popup {
  position: absolute;
  background-color: white;
  margin-top: 200px;
  margin-left: 250px;
  z-index: 2000;
  font-size: 30px;
  height: 300px;
  width: 800px;
  background-color: #8f77a6;
  color: white;
  border-radius: 30px;
  padding: 30px;
  border: 3px solid black;
  display: flex;
  flex-direction: column;
  padding-top: 0px;
  padding-bottom: 0px;
  justify-content: space-evenly;
}
.popup #click-to-close {
  font-size: 20px;
}
