header{
    background-size: cover;
    color: var(--black);
}
header[name='championship']{
    background: url('../images/championshiplogo.png') center no-repeat;
}
header[name='clans']{
    background: url('../images/clanburg.png') no-repeat right bottom;
}
header[name='history']{
    background: url('../images/handyhistoryhintergrund.png') no-repeat center left;
    background-size: 35%;
}
main{
    color:var(--black);
    width: 50vw;
    max-width: 1200px;
    position:relative;left:50%;transform:translateX(-50%);
}
main section{
    margin:3em 0;
}
#content p{
    cursor:url("../cursors/info.cur"),auto;
}

/*mobile layout*/
@media screen and (max-width:600px) {
    main{
        width: 95vw;
        min-width:400px;
    }
    #content p{
        text-align: justify;
        padding:0 1em;
        font-family: cursive;
    }
}