h1 {
    border-left: none;
}

#main{
    float: left;
    margin: 0 auto;
}

#header .header__imageArea img{
    margin: 0 auto;
    display: none;
}

#footer{
    background: #fff8e8;
    /* border-top: solid 3px #ffc06e; */
    position: relative;
}

#footer::before{
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    background: linear-gradient(
        45deg,
        #ffc06e 25%,
        transparent 25%,
        transparent 50%,
        #ffc06e 50%,
        #ffc06e 75%,
        transparent 75%
    );
    top: 0;
    left: 0;
    background-repeat: repeat-x;
    background-size: 5px 5px;
}


#footer p{
    color: #333;
}