html {
    scroll-behavior: smooth;
    font-size: 16px;
}
@font-face
{
    font-family: "headerfont";
    src: url("fonts/Momentz.otf") format("opentype");
}
@font-face {
    font-family: "bodyfont";
    src: url("fonts/Sophiecomic-Regular.ttf") format("truetype");
}
body {
    
    background-color: #fefeff;
    font-family: "bodyfont", sans-serif;
    font-size: 1.5rem;
}
.banner {
    text-align: center;
    padding: 10px;
    background-color: #9f68e8;
}
.banner h1 {
    font-family: "headerfont", sans-serif;
    letter-spacing: .25rem;
    font-size: 2.5rem;
    color: #ffffff;
    -webkit-text-stroke: 1.5px rgb(0, 0, 0);
}
.banner p {
    font-family: "bodyfont", sans-serif;
    font-size: 2rem;
    color: #ffffff;
    text-decoration: underline;
}
.main {
    display: flex;
    justify-content: space-between;
    max-width: 53.125rem;
    margin: auto;
    padding: 1.25rem;
    align-items: flex-start;
    font-size : 1.5rem;
    font-family: "bodyfont", sans-serif;
}

.right-column {
    width: 25%;
    padding: 1.25rem;
}

.right-column nav {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.right-column .leafart {
    max-width: 13.25rem;
    height: auto;
    display: block;
    margin: auto;
}

.left-column {
    flex: 1;
    padding: 1.25rem;
}

.FAQ-Container{
    position: relative;
    border: 0;
    border-radius: .3125rem;
    padding: .5rem;
    transition : 0.3s ease;
    margin: auto;
    max-width: 53.125rem;
    text-align: center;
}

.FAQ-Container h2 {
    font-size: 2rem;
}

.FAQ-section.active {
    background-color: #ffffff
}

.FAQ-section.active .A {
    max-height: 150px; 
    opacity: 1;
    margin: 1rem;
}


.FAQ-button {
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    background:none;
    border: 1px solid #ccc;
    border-radius: .3125rem;
    font-family: inherit; 
    font-size: 1.25rem;
    width: 100%;
    padding-right: .625rem;
    padding-left: .625rem;
    margin: 5px;
}
.FAQ-button i,
.FAQ-button svg {
    display: inline-block;
    transition: transform 0.35s ease;
    position: relative;
    top: 30px;
    right: 30px;
}

.FAQ-section.active .FAQ-button i,
.FAQ-section.active .FAQ-button svg {
    transform: rotate(180deg);
}

.A {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    transition: all 0.35s ease-in-out;
}

.showcase-container {
    text-align: center;
    margin:auto;
    max-width: 53.125rem;
}
