:root{
    --cheese: #FFA600;
    --redgold: #EB5406;
    --wheat: #FFECA1;
}

body{
    margin: 0; padding: 0;
    background-color: var(--cheese);
    font-family: 'Comic Sans MS';
}

#header{
    margin: auto;
    height: 500px;
    width: 1200px;
    background-color: var(--redgold);
    background-image: url(./topbanner.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

#main{
    margin: auto;
    width: 1200px;
    height: calc(100vh - 500px);
    background-color: var(--wheat);
}

#main marquee{
    background-color: black;
    color: white;
}

#container{
    display: flex; margin: auto;
}

#sidebar{
    width: 300px;
}

#sidebar ul{
    list-style-type: none;
    padding: 0;
}

#sidebar li{
    background-color: var(--redgold);
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
}

#sidebar li:hover{
    background-color: var(--cheese);
}

#sidebar a{
    color: white;
    text-decoration: none;
    font-size: large;
}

#mulehorselink a{
    color: var(--redgold);
    text-decoration: underline;
}

#mulehorselink a:hover{
    color: var(--cheese);

}
#text{
    width: 900px;
}