      html,
      body{
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
      }
	  
.questions{
	background-color:#f90;
	min-height:20px;
	position: absolute;
	top: 0px;
	right: 0px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	box-sizing: border-box;
	padding: 2px;
	width: 30%;
}

.PrResultado {
  position: absolute;
  top: 10px;
  left: 50px;
  background-color: #ff9900;
  padding: 8px;
}

.Coords {
	padding: 7px 15px 5px;
	bottom: 100px;
	right: 5px;
	background-color: #ff9900;
}
	  
.grid-container {
	display: grid;
	width: 600px;
	grid-template-columns: 10% 20% 20% 10% 20%;
}	

.card {
    background-color:lightgrey;
	min-height:20px;
	position: absolute;
	top: 10px;
	right: 0px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	box-sizing: border-box;
	padding: 2px;
	width: 30%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 16px;  
  border: none;
  outline: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown:hover .dropbtn {
  background-color: red;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
   padding: 12px 18px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

