body {
    background-color: #FFCC66;
    width: max(50%,1080px);
    margin:auto;
    padding-bottom: 128px;
}

h1 {
    text-align: center;
    font-size: xx-large;
    color: #000080;
    position: relative;
    width: 50%;
    margin: auto;
    padding: 8px;
    text-align: center;    
}

h2 {
    color: #800080;
    font-size: x-large;
    width: 75%;
    margin: auto;
    padding: 18px;
	text-align: justify;
}

p {
    color: darkmagenta;
    width: 75%;
    margin: auto;
    padding: 8px;
    font-size: 18;
    font-weight: bold;
}

img {
  max-width: 75%;
  height: auto;
  margin: auto;
  display: block;
}



a {
  text-align: center;
  text-decoration: none;
  color: #2F3641;
}

a:hover {
  text-decoration: underline;
}

table {
  /*border: 1px solid;*/
  text-align: center;
  margin: auto;
  border-collapse: collapse;
}

th {
  color: black;
  font-size: 24;
  /*border: 1px solid;*/
  width: 50%;
}

tr, td {
  vertical-align: text-top;
  /*border: 1px solid;*/
  width: 50%;
}

li {
  font-size: 24px;
  width: 50%;
  margin: auto;
  text-align: left;
  padding-bottom: 8px;
  color: darkmagenta;
  margin: auto;
  font-weight: bold;
}


.downloadLink {
  color: teal;
  margin: auto;
  width: 50%;
  margin-bottom: 8px;
  margin-top:  8px;
  border-width: 2px;
  border-color: teal;
  border-style: solid;
  display: block;
  border-radius: 16px;
  background-color: aqua;
  font-weight: bold;
  font-size: 26px;
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
}


.tagline {
  color: blueviolet;
  size: 16px;
  font-size: large;
  font-weight: bolder;
  padding: 18px;
}

.description {
  color: darkmagenta;
  font-size: medium;
  margin-bottom: 18px;
  background-color: #FFFF99;
  border-radius: 8px;
}

.tableCell {
  color: darkmagenta;
  font-size: medium;
  padding: 16px;
  text-align: justify;
}

.photoDesc {
  color: darkmagenta;
  font-size: medium;
  font-style: italic;
  padding: 16px;
  text-align: center;
}

.swbutton {
  background-color: #717F96;
  font-weight: bold;
  text-align: center;
  font-size: 26px;
  font-family: 'Courier New', Courier, monospace;
  margin: auto;
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 8px;
  width: 25%;
  border-width: 8px;
  border-color: 2E3541;
  display: block;
  border-radius: 4px;
}

.mainbuttonscontainer {
  margin: auto;
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 8px;
  width: 100%;
  text-align: center;  
  display: inline-flex;
  flex-wrap: wrap;
}

.mainbutton {
  background-color: #717F96;
  font-weight: bold;
  text-align: center;
  align-self: center;
  font-size: 22px;
  font-family: 'Courier New', Courier, monospace;
  float: left;
  width: 30%;
  margin: auto;
  height: 64px;
  margin-bottom: 8px;
  margin-top: 8px;
  
  border-width: 4px;
  border-color: #5F646C;
  border-radius: 4px;
}

.mainbutton:hover {
  background-color: #8D9671;
}

.returnButton {
  border-color: #6063aa;
  background-color: #b6cbff;
  width: 10%;
  margin-right: 0%;
  position: fixed;
  right: 10%;
  bottom: 1%;
  border-width: 2px;
  border-radius: 2px;
  box-shadow: 0 9px #6063aa;
}

.returnButton:hover {
  border-color: #000000;
  box-shadow: 0 9px #000000;
  background-color: #b6cbff;
  border-width: 2px;
  border-radius: 2px;
}

.meres {
  background-color: #717F96;
  font-weight: bold;
  text-align: center;
  align-self: center;
  font-size: 22px;
  font-family: 'Courier New', Courier, monospace;
  float: left;
  width: 30%;
  margin: auto;
  height: 64px;
  margin-bottom: 8px;
  margin-top: 8px;
  
  border-width: 4px;
  border-color: #5F646C;
  border-radius: 4px;
}

.meres:hover {
  background-color: #5F646C;
}



/* Style the button that is used to open and close the collapsible content */
.collapsible {
    position: relative;
    background-color: bisque;
    margin: auto;    
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 75%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    display: block;
    border-radius: 16px;
  }

  
  .collapsible:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: white;
    float: right;
    margin-left: 5px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active, .collapsible:hover {
    background-color: burlywood;
    
  }

  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }
  
  /* Style the collapsible content. Note: hidden by default */
  .content {
    margin: auto;
    width: 75%;
    display: none;
    padding: 0 18px;
    padding-bottom: 0 15px;
    overflow: hidden;
    background-color: blanchedalmond;
    border-radius: 8px;
    border-color: coral;
    border-style: solid;
  }

  
