* {
  box-sizing: border-box;
}


html,body 	{
	width:100%;
	height:100%;
	margin:auto;
	min-width:600px;
	max-width:2000px;
	height:100%;
	background-image:url('/images/marble-tan.jpg');
	touch-action: manipulation;
	}


/* Tangarine Font face */
  @font-face {
  font-family:tangerine;
  font-style: normal;
  font-weight: 400;
  src: local( 'tangerine-bold'), url('/fonts/tangerine-bold.ttf');
}

.fruit {
        font-family:"tangerine";
        font-size:3em;
        font-weight:600;
        text-align:center;
        color:#000066;
        margin-left:5px;
}
  


/* Style the element that is used to open and close the accordion class */
p.accordion {
  background-color: #002626;  /*background color for accordion bar*/
  color: #fffff0;
  font-weight:bold;
  cursor: pointer;
  padding: 10px;
  text-align: left;
  font-size: 15px;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-bottom:10px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.accordion.active, p.accordion:hover {
  background-color: #999;
  color:#000;
  font-size:18px;
}

/* Unicode character for down arrow */
p.accordion:after {
  content: "\2193"; 
  font-size: 18px;
  color: #fff;
  float: right;
  margin-left: 5px;
}

/* Unicode character for up arrow */
p.accordion.active:after {
  content: "\2191";   
}

/* Style the element that is used for the panel class */
div.panel {
  padding: 0 18px;
width:100%;
  background-color: white;
  line-height:1.5;
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  opacity: 0;
  margin-bottom:10px;
}

div.panel.show {
  opacity: 1;
  max-height: 800px; /* Whatever you like, as long as its more than the height of the content (on all screen sizes) */
}

.link_default {
	text-decoration:underline;
	color:blue;
}

dl {
  display: grid;
  grid-gap: 4px 16px;
  grid-template-columns: max-content;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
  grid-column-start: 2;
}



.btn1 {
  display: inline-flex;
  justify-content: center; /* center the content horizontally */
  align-items: center; /* center the content vertically */
  -webkit-border-radius: 20;
  -moz-border-radius: 20;
  border-radius: 10px;
  font: 700 0.9rem Verdana;
  letter-spacing: 2px;
  height:20px;
  background: #228B22;
  color: #fffff0;
  padding: 20px 20px 20px 20px;
  text-decoration: none;
}

.btn1:hover {
  background: #7CFC00;
  color: #000;
  text-decoration: none;
}



.center {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}



/* tablet breakpoint */
@media (min-width:768px) {
    .padded-boxes > * {
        width:calc(50% - 1rem);
    }
}
