
* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  color: #FFBB91;
  background-color: #112;
}

.title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

h1 {
  text-align: center;
}

.title-container img {
  width: 50px;
  margin-right: 15px;
}

.dashboard-container {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

a img {
  width: 300px;
  border-radius: 25px;
  border: 1px solid transparent;
}

a img:hover {
  border-color: #FFBB91;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: #FFBB91;
  color: #112;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: 190px;
  right: 75px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}