:root{
    --rainlightblue: #e6e6f3;
    --rainblue: #619AC2;
    --mborderblue: #678cae;
    --darkblue: #23395d;
    --darksky: #3f3f3f;
    --yellowclouds: #edddbc;
}

p, div{
    margin: 0px;
    padding: 0px;
    color: var(--darksky)
}

.button{
    width: 88px;
    height: 31px;
}

/*                                           navigation bar */
#navigationbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 40px;
}
.navigationbarbutton{
    margin-left: 20px;
    margin-right: 20px;
    padding: 6px;
    padding-left: 8px;
    padding-right: 8px;
    
    text-align: center;
    text-decoration: none;
    border: none;
    font-size: 20px;
    color: var(--darksky);
    background-color: orange;
}
.navigationbarbutton:hover{
    font-size: 22px;
}



/*                                           gloomlee on home page*/
#websiteheader{
    width: 100%;
    position: relative;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

#titlearea{
    margin: 10px;
    height: 100px;
}


#titletext{
    color: orange;
    font-size: 50px;
    border: none;
    text-align: center;
    padding: 20px;
    margin-bottom:20px;
}

#welcome{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    height: 100px;
}
#welcometext{
    font-size: 20px;
    text-align: center;
    color: orange;
}

#options{
    display: flex;
    justify-content: center;
    align-items: center;
}
.optiontitle{
    color: orange;
    font-size: 40px;
    padding: 30px;
    text-align:center;
}

.items{
    display: flex;
    justify-content: center;
}
.item{
    margin: 5px;
    width: 100%;
}

.link{
    color: orange;
}

#linkbacksection{
    display: flex;
    flex-direction: column;
    justify-content: center;
     margin-top: 20px;
}
.linkbacktext{
    color: orange;
    text-align: center;
    font-size: 15px;
}
#linkexample{
    display: inline-block;
    width: 200px;
    margin: auto;
}

#mycandyarea{
    margin-top: 100px;
}
#candyitems{
    width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
}
#candyitems:a{
}
.candybowlitem{
    max-width: 200px;
    max-height: 200px;
}
.candysection{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}


/* trick or treat */
.floating{
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }   
}






