﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Open+Sans&display=swap');
body{
background: #E7E2FF;
color:#000;
font-family: 'Open Sans', sans-serif;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
width:50%;
margin-left:20px;margin-right:auto;

}
.grid-item {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  width:180px;
}

.collapsible {
width:110%;
  background-color: pink;
  border: none;
  text-align: left;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  color: black;
  margin-left:0px;
  padding-top:6px;
padding-bottom:6px;
font-size:20px;
font-weight:normal;
font-family: 'Montserrat', sans-serif;

}
.active, .collapsible:hover {
  background-color: #ffb6c1;
 box-shadow: 5px 5px 8px #888888;
 color:black;

 }
.collapsible2 {
width:110%;
	background-color:red;
	color:#fff;
	   padding-top:6px;
padding-bottom:6px;
font-weight:bold;
font-size:20px;
font-weight:normal;
font-family: 'Montserrat', sans-serif;

}
.content {
background-color:#fff;
  padding-top: 10px;
  padding-bottom: 100px;
  max-height: 0; /* Set initial height to 0 */
  overflow: visible;
font-size:14px;
font-family: 'Open Sans', sans-serif;
font-weight:normal;

}
#openAllBtn {
	background-color:red;
	color:#fff;
	padding:10px;
font-weight:bold;
width:150px;
font-size:18px;

	}
#closeAllBtn {
background-color:#6699FF;
color:#000;
	padding:10px;
font-weight:bold;
width:150px;
font-size:18px;
}
.innerbox {
	width:90%;
margin-left:auto;
margin-right:auto;
margin-top:10px;
margin-bottom:10px;
padding:10px;
}
#databox {
	width:100%;
padding-top:20px;
padding-bottom:20px;
margin-left:-20px;
margin-right:auto;
}
#header {
	width:90%;
margin-left:auto;
margin-right:auto;
}
button {

border:0;
box-shadow: 2px 2px 8px #888888;	
}
ul{margin-bottom:50px;
 list-style-type: none;
 }
li {
	margin-left: 20px;
	margin-right: auto;

	position: relative;
	text-align: left;
	float: left;

}
mark {
	background-color:red;
	color:#fff;
	padding:10px;
	font-weight:bold;
	 border-radius: 5px;
border:0;
box-shadow: 2px 2px 8px #888888;

}
#topbutt {
	background-color:YELLOW;
	width:220px;
	padding:10PX;
	FONT-WEIGHT:BOLD;
	font-size:20px;
}
a:link {
	text-decoration:none;
	color:#000;
}
a:hover {
	color:#000;
}
.content {
  padding-top: 10px;
  padding-bottom: 10px;
  max-height: 100%;
  background-color: #fFF;

}
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: none;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fFF;
  
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
    padding-top:10px;
  padding-bottom:10px;

}
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {background-color: #ddd;}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}
