html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.normal-link {
    color: blue;
    text-decoration: underline;
    display: inline;
}

.header {
    background-color: rgb(230, 230, 230);
    border-bottom: 2px solid orange;
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: gray;
}

.big-button {
    display: flex;
    justify-content: center;
    background-color: orange;
    height: 46px;
    border-radius: 23px;
    border-top: 2px solid rgb(255, 208, 122);
    border-left: 2px solid rgb(255, 208, 122);
    border-right: 2px solid rgb(218, 142, 1);
    border-bottom: 2px solid rgb(218, 142, 1);
    font-size: 22px;
    color: white;
    /* text-shadow: 1px 1px 2px gray; */
    user-select: none;
    padding: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 12px -5px rgb(200, 200, 200);
    margin-top: 10px;
    width: 230px;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.menu-option {
    color: gray;
    margin-right: 40px;
    display: flex;
    justify-content: center;
    width: 60px;
    height: 25px;
    user-select: none;
    cursor: pointer;
}

.active-option {
    cursor: default;
    border-bottom: 2px solid gray;
}

.section-header {
    color: gray;
    margin: 10px;
    font-size: 130%;
}

.section-body {
    min-width: 600px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-body {
    border: 1px solid orange;
    border-radius: 3px;
    padding: 20px;
    min-width: 600px;
    width: 40vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.learn-body {
    border: 1px solid orange;
    border-radius: 3px;
    padding: 20px;
    min-width: 600px;
    width: 60vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.message-area {
    width: 80%;
    height: 100px;
}

.email-box {
    width: 300px;
    margin-right: 30px;
}

.promo-image {
    color: orange;
    font-size: 200%;
    animation: fadeIn 2s;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.hidden {
    display: none;
}