body {
    background-color: #FFFFE0;
    background-image: url(../../media/leaves_background.gif);
    color: #0000FF;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    text-shadow: 2px 2px 10px #EE82EE;
}

.banner p {
    padding-left: 20px;
}

.boxleft, .boxright {
    border: 3px #FF0000 solid;
    background: #fff;
    margin-bottom:20px;
}

.boxleft {
    margin-right: 200px;
    box-shadow: 0px 0px 30px #EE82EE;
}

.boxright {
    margin-left: 200px;
    width: 940px;
    box-shadow: 0px 0px 30px #f6fb52;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    color: #0000FF
}

.boxright span {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-name: textscroll;
    animation-timing-function: linear;
    margin-top: 4px;
    transition: .3s;
}

.boxright img {
    box-shadow: 0;
    transition: .3s;
    border: 2px solid #FFFFFF00;
}

.boxright img:hover {
    filter: drop-shadow(2px 2px 0px #f6fb52)
            drop-shadow(-2px -2px 0px #f6fb52)
            drop-shadow(2px -2px 0px #f6fb52)
            drop-shadow(-2px 2px 0px #f6fb52)
            drop-shadow(0px 0px 5px #FF00FF);
}

.boxright:hover span {
    animation-play-state: paused;
    z-index: 1000;
}

@keyframes textscroll {
    from {
        transform: translateX(0%)
    }
    to {
        transform: translateX(-100%);
    }
}

.boxheader {
    border-bottom: 3px #FF0000 solid;
    background: #f6fb52;
    color:#0000FF;
    font-weight: bold;
    text-shadow: 2px 2px #FFFAF0;
    font-family: 'Times New Roman', Times, serif;
}

.content {
    display: flex;
    color: #FF00FF;
}

.content p {
    padding: 5px;
    margin: 0px;
}

.content a {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
}

.maincolumn {
    flex-grow: 1;
}

.mainsite {
    width: 1140px;
    margin: auto;
}

.sidebar {
    padding: 10px;
    padding-top: 0px;
    background-color: none;
    color: #00008B;
    flex-shrink: 10;
}

.text {
    display: flex;
}

.widget {
    box-shadow: 0px 0px 20px #FF00FF;
}