body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  font-family: sans-serif;
  background: linear-gradient(#50dd7a, #090976);
  height: 100vh;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main1{
  font-family: sans-serif;
 
  display: grid;

}

/* -------------------col2------------------------ */

#accordion {
  
  text-align: center;
}

#accordion li {
  list-style: none;
  width: 50vw;
  margin-bottom: 10px;
  background: #efebeb;
  padding: 10px;
  border: 2px solid yellow;
  margin: 1em;
  text-shadow: 2px 2px 10px rgb(45, 154, 58);
  box-shadow: 5px 5px 10px violet;
}

#accordion li label {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: rgb(235, 5, 243);
  cursor: pointer;
  font-weight: bold;
}

#accordion li label span {
  transform: rotate(90deg);
  font-size: 22px;
  color: dodgerblue;
}

#accordion label + input[type="radio"] {
  display: none;
}

#accordion .content {
  padding: 0 10px;
  line-height: 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s;
}

li p{
  color:#ff0000;
  font-weight: bold;
}
#accordion label + input[type="radio"]:checked + .content {
  max-height: 400px;
}


/* -------------------col1------------------------ */
#container {
  text-shadow: 3px 3px 5px rgb(45, 154, 58);
  box-shadow: 5px 5px 10px violet;

  border: 4px solid rgb(255, 255, 255);
  color:white;
  position: relative;
  padding: 7px;
  font-size: 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1.5em;
}

#tooltip-content {
  text-shadow: 3px 3px 5px rgb(45, 154, 58);
  box-shadow: 2px 2px 5px rgb(11, 147, 201);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  white-space: nowrap;
  padding: 10px 15px;
  border-radius: 7px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#tooltip-content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border: 15px solid;
  border-color: #000 #0000 #0000 #0000;
}

#container:hover #tooltip-content {
  top: -130%;
  visibility: visible;
  opacity: 1;
}



