body {
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: scroll;
}

a {
    text-decoration: none;
}

#header {
    width: 100%;
    background-color: #f0f0f0;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#header > #title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

#stickyheader {
    width: 100%;
    height: 100px;
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    z-index: 10;
}

#stickyheader > #stickytitle {
    position: absolute;
    left: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#menu {
    display: flex;
    justify-content: center;
}

#menu > a {
    font: 1.4em "Arapey", sans-serif;
    color: #303030;
    transition: background-color 0.75s ease, color 0.25s;
}

#menu > a:hover {
    color: #ffffff;
    background-color: #a0138e;
    font-weight: bold;
}

#menu > a > div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 50px;
}

#container {
    position: relative;
}

#container > .panel {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.caption {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.caption > h1 {
    color: #303030;
    font: 2em "Arapey", sans-serif;
}

.content {
    width: 100%;
    background-color: #ffffff;
    margin-bottom: 100px;
}

#footer {
    position: fixed;
    bottom: 0;
    z-index: 1;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    opacity: 0.8;
    padding-top: 30px;
}

#footer > div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial > img {
    margin: 0 10px;
}

.testimonial > p {
    margin: 0 10px;
    font: 1.2em "Arapey", sans-serif;
}