h1 {
    max-width: 500px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    text-shadow: 0 0 10px;
    text-decoration: underline overline 5px #a46ca2;
    color: #ffffff;
    margin: 1px;
}

h2 {
    max-width: 500px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: initial;
    color: #ffffff;
    text-shadow: 0 0 10px;
    margin: 5px 0;
    padding: 2px;
}

h3 {
     text-align: left;
    font-family: Arial, sans-serif;
    font-size: 1rem;
    color: #ffffff;
    text-shadow: 0 0 10px;
    margin: 5px 0;
    padding: 2px;
}
.expandable {
    --xy-padding: 14px;
    --border-radius: 6px;
    
    max-width: 500px;
    margin: 1em 0;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
}

.expandable--open .expandable__content-wrapper {
    grid-template-rows: 1fr;
}

.expandable__title-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--xy-padding);
    user-select: none;
    background-color: #a46ca2;
    color: #ffffff;
    text-shadow: 0 0 5px;
    border-radius: var(--border-radius) var(--border-radius) 0 0 ;
    cursor: pointer;
    
}

.expandable__title {
    font-weight: bold;
    
}

.expandable__content {
    padding: 0 var(--xy-padding);
    line-height: 1.4;
    font-size: 0.85em;
    text-shadow: 0 0 5px;
    border: 1px solid #a46ca2;
    background-color: #f29eef;
    border-top: none;
    box-shadow: 0 0 50px #f29eef;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    overflow: hidden;
    
}

.expandable__content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

form  {
    display: flex;
    background-color: #a46ca2;
    text-shadow: 0 0 5px;
    color: #ffffff;
    flex-direction: column;
    box-sizing: border-box;
    border-radius: 6px 6px 0 0;
    border: 1px solid #a46ca2;
    padding: 8px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    gap: 10px;
}
input,
textarea {
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    text-shadow: 0 0 5px;
    background: #a46ca2;
    border: 2px solid #f29eef;
    padding: 10px;
    font-size: 1rem;
    border-radius: 6px 6px 0 0;
 	box-shadow: 0 0 5px;
}

button {
    background: #a46ca2;
    border: 2px solid #f29eef;
    font-size: 16px;
    text-shadow: 0 0 5px;
    color:#ffffff;
    padding: 10px;
    cursor: pointer;
    border-radius: 0 0 6px 6px;
 	box-shadow: 0 0 5px;
}

body {
    background-color: #242424;
    
    color: #e5e5e5;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}
p {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #a46ca2;
    text-shadow: 0 0 5px;
    background-color: #a46ca2;
    border-radius:6px 6px 0 0;
    padding: 14px;
    font-weight: bold;
    max-width: 500px;
    margin: 1em 0;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}
strong {
    color: #005f8b
}

a:link {
     color: #ffffff;
    font-size: 0.85em;
    text-shadow: 0 0 5px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
}

a:active, 
a:visited,
a:focus,
a:hover{
    color: #ffffff;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    text-shadow: 0 0 5px;
}

footer {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid #a46ca2;
    text-align-last: justify;
    background-color: #a46ca2;
    border-radius:0 0 6px 6px;
    padding: 14px;
    font-weight: bold;
    max-width: 500px;
    margin: 1em 0;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}