body {
  background-color: lightpink;
  font-family: Georgia, serif;
  text-align: center;
  font-size: 3.2vmin;
  /*
  background-image: url("lotte.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 6em;
  */
}

h1 {
  font-size: 1.5em;
  color: DarkRed;
}

h2 {
  font-size: 1.5em;
  text-shadow: 0px 2px 4px darkred;
}

h3 {
  font-size: 1em;
}

ul {
  list-style: none;
}

li {
  list-style: none;
}

a {
  color: darkred;
  text-decoration: none;
}

a:hover {
  font-weight: bold;
  text-decoration: underline;
}

textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  padding: 1em 2em;
  box-sizing: border-box;
  border: 2px solid darkred;
  border-radius: 4px;
  outline-color: red;
  outline-width: 4px;
  resize: none;
}

input[type=text] {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em 0.5em;
  border: 2px solid darkred;
  border-radius: 4px;
  outline-color: red;
  outline-width: 4px;
}

input[type=password] {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em 0.5em;
  border: 2px solid darkred;
  border-radius: 4px;
  outline-color: red;
  outline-width: 4px;
}

input[type=email] {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em 0.5em;
  border: 2px solid darkred;
  border-radius: 4px;
  outline-color: red;
  outline-width: 4px;
}

select {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0.5em 0.5em;
  border: 2px solid darkred;
  border-radius: 4px;
  outline-color: red;
  outline-width: 4px;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.container {
  display: flex;
  justify-content: center;
 }

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.share {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 75%;
  justify-content: right;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}
 
.menu {
  flex: 0 0 6em;
  background-color: darkred;
  margin: 0.4em;
  padding: 0.1em;
  border-radius: .25em;
  box-shadow: 0px 4px 8px black;
}

.icon {
  flex: 0 0 2em;
  margin: 0.5em;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  /* visibility: hidden; */
  opacity: 0;
  transition: opacity 1s;
  width: 6em;
  bottom: 100%;
  left: 50%;
  margin-left: -3em;
  background-color: black;
  color: lightgrey;
  text-align: center;
  font-size: .5em;
  border-radius: .25em;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  /* visibility: visible; */
  opacity: 1;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.menu a {
  color: lightpink;
  text-decoration: none;
}

.menu a:hover {
  font-weight: bold;
  color: white;
}

.menu input[type=submit] {
  background-color: transparent;
  color: lightpink;
  font-size: 1em;
  font-family: Georgia, serif;
  border: none;
  cursor: pointer;
} 

.menu input[type=submit]:hover {
  font-weight: bold;
  color: white;
} 

.question {
  max-height: 60vh;
  border: 2px darkred solid;
  border-radius: 1em;
  margin: .25em;
  padding: 1em;
  background-color: white;
}

.starred-question {
  color: lightpink;
  max-height: 60vh;
  border: 2px darkred solid;
  border-radius: 1em;
  margin: .25em;
  padding: 1em;
  background-color: rgb(189,4,25);
}

.advert {
  max-height: 60vh;
  border: 2px darkred solid;
  border-radius: 1em;
  margin: .25em;
  padding: 1em;
  background-color: lightblue;
}

.question_list {
  width: 25em;  
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.question_graph {
  flex: 0 0 100px;
  margin: 0.25em;
}

.info {
  background-color: transparent;
  padding: 1em;
  font-size: .6em;
  text-align: left;
 } 

