:root{
    --accent: #ff4f1a;
    --shadow-color: 200deg 30% 52%;
}

body{
    color: var(--accent);
}

#contentWrapper{
    margin-top: 40px;
}
#content{
    margin-left: auto;
    margin-right: auto;
}
#animation{
    position: relative;
    top: 10px;
}
#textBox{
    background-color: var(--accent);
    color: var(--mainbody);
    border-radius: 5px;
    padding-bottom: 3%;
    margin-bottom: 3px;
}
.fancyText{
    font-family: "Garamondt-i";
    line-height: 1;
    font-size: 2em;
    padding-top: 25px;
}
p{
    margin: 0;
}
#links a{
    color: var(--mainbody);
}
#links{
    display: flex;
    width: 100%;
    justify-content: space-around;
    padding: 0%;
    margin: 0;
}
#links img{
    vertical-align: middle;
    image-rendering: pixelated;
}
@media only screen and (max-width:1050px) {
    #content{width: 80%;}
    #links{
        flex-direction: column;
        padding-left: 2%;
    }
}
@media only screen and (min-width:1050px) {
    #content{width: 500px;}
}


