@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Sigmar&display=swap');
* {
    font-size: 1.2rem;
    margin:0;
    padding:0;
    text-align: center;
    box-sizing: border-box;
}
html, body {
    height: 100%;
}
  body {
    display: flex;
    flex-direction: column;
  }
a {
    text-decoration: none;
    color: black;
}
a:hover {
    color: purple;
}
body {
    background: rgb(37,0,55);
    background: linear-gradient(15deg, rgba(37,0,55,1) 0%, rgba(169,64,184,1) 0%, rgba(243,100,255,1) 0%, rgba(236,108,255,1) 28%, rgba(150,209,255,1) 67%, rgba(142,96,188,1) 100%);
    background-attachment: fixed;
    font-family: 'Lato', sans-serif;
}
h3 {
    font-size: 2rem;
}
h1 {
    font-size: 4rem;
    letter-spacing: 8px;
    font-family: 'Sigmar', cursive;
    color: #f9d0ff;
    text-shadow: -4px 4px 0 #000,
				  1px 1px 0 #000,
				 1px -1px 0 #000,
				-1px -1px 0 #000;
}
h2 {
    width: fit-content;
    padding: 10px 20px;
    margin: auto;
    font-weight: 900;
}
header {
    min-width: 400px;
    max-width: 900px;
    margin: 0 auto;
}
header img {
    max-width: 50px;
}
header li {
    padding: 10px;
    float: left;
    list-style: none;
    line-height: 200%;
}
main {
    flex: 1 0 auto;
}
.flex-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.flex-item {
    margin: 0;
 }
.flex-container2 {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: auto;
  }
.contentBox {
    height: auto;
    border: 3px inset black;
    padding: 15px;
    border-radius: 15px;
    display: inline-block;
    vertical-align: top;
    box-shadow: inset 0 0 15px white;
    margin: 10px;
    background-color: #fbcfff9a;    
    max-width: 900px;
    transition: all 0.5s;
}
.contentBox:hover {
    background-color: #fbcfff;    
    box-shadow: inset 0 0 15px 5px white;
}
.contentBox:active {
    border-width: 10px;
}
.contentText {
    margin: 10px;
    border: 2px solid black;
    border-radius: 15px;
    padding: 10px;
    background-color: white;
}
  .accordion {
  background-color: #f9d0ff;
  color: #222;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  outline: none;
  font-size: 1em;
  font-weight: bold;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #e6b1ee;
}
.panel {
  padding: 0 18px;
  background-color: #fbe2ff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.panel p {
    padding: 20px;
}
footer {
    background-color:deeppink;
    padding: 20px;
}
.footer {
  flex-shrink: 0;
}