@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Special+Elite&display=swap');
* {
    margin:0;
    padding:0;
    text-align: center;
}
:root {
    --theme-color1: #ffffee;
    --theme-color2: #eefcc3;
    --theme-color3: #b4edb0;
    --theme-color4: #51dcb8;
    --theme-color5: #00d3d1;
}
html, body {
    height: 100%;
  }
  body {
    display: flex;
    flex-direction: column;
  }

a {
    text-decoration: none;
    color: black;
}
body {
    background-color:#ffffee;
    background-image: radial-gradient(circle at 50% -20.71%, #ffffee 0, #ffffe8 6.25%, #ffffe1 12.5%, #ffffda 18.75%, #ffffd2 25%, #fdffca 31.25%, #eefcc3 37.5%, #dcf7bb 43.75%, #c9f2b5 50%, #b4edb0 56.25%, #9ee8af 62.5%, #87e4b0 68.75%, #6ee0b3 75%, #51dcb8 81.25%, #29d9bf 87.5%, #00d6c8 93.75%, #00d3d1 100%);
    background-attachment: fixed;
    font-family: 'Merriweather', serif;
}
h1 {
    font-size: 7em;
    font-family: 'Special Elite', cursive;
    padding-top: 20px;
    color: var(--theme-color3);
    text-shadow: -2px 2px 0 #000,
                2px 2px 0 #000,
				0 8px 0 #0008,
				2px -2px 0 #000,
				-2px -2px 0 #000;
    background-color: rgba(255,255,255,0.5);
    border: 40px lightgreen;
    border-radius: 0 0 100px 100px;
    border-style: none ridge;
    max-width: 900px;
    margin: auto;
}
h2 {
    font-size: 2em;
    width: fit-content;
    border-radius: 15px;
    padding: 10px 30px;
    margin: auto;
    transition: 0.3s;
    font-family: 'Merriweather', serif;
    letter-spacing: 5px;
}
button h2 {
    font-size: 3em;
}
main {
    flex: 1 0 auto;
}
.contentBox {
    height: auto;
    border: 8px outset var(--theme-color1);
    box-shadow: inset 0 0 18px var(--theme-color5);
    border-radius: 15px;
    background-color: var(--theme-color2);    
    max-width: 900px;
    transition: 0.3s;
}
.contentBox:hover {
    box-shadow: inset 0 0 12px 4px var(--theme-color5);
}
.contentBox:hover h2{
    transform: scale(120%);
}
.contentBox:active {
    border-style: inset;
    box-shadow: inset 0 0 8px 4px var(--theme-color4);
    background-color: var(--theme-color1);
}
.acc-panel {
    flex: 40%;
    background-color: white;
    border: 2px solid white;
    border-radius: 10px;
    padding: 15px;
    margin: 15px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
  }
.flex-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}
.flex-item {
    padding: 15px;
    margin: 0;
}
footer {
    background-color:darkolivegreen;
    padding: 20px;
}
.footer {
  flex-shrink: 0;
}

.accordion {
    background: #ffffcc;
    background-image: linear-gradient(270deg, #ffffcc 0, #f5fec6 12.5%, #e8fac0 25%, #d9f6ba 37.5%, #c9f2b5 50%, #b8eeb1 62.5%, #a6eaaf 75%, #94e6af 87.5%, #80e3b0 100%);
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    outline: none;
    font-size: 15px;
    max-width: 800px;
    transition: 0.4s;
}
.active, .accordion:hover {
      background-color: #cfc;
      
    border-radius: 0% 0% 50% 50% / 10% 10% 50% 50% ;
}
.panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    }