:root {
    --primary-color: #ffc833;
    --secondary-color: #6c00ff;
    --light-black: #1a1a1a;
    --light-gray: #333333;
}

body {
    background: var(--primary-color);

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    font-family: 'Open Sans', sans-serif;
    color: white;
}

header {
    position: relative;
    width: calc(100% - 50px);
    height: 200px;

    padding: 25px;
}

main {
    position: relative;
    top: 0;

    width: calc(100% - 50px);

    padding: 25px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

#anti-cheat-icon {
    display: block;
    position: absolute;
    left: 5px;
    bottom: 10px;
}

#anti-cheat-icon > img {
    width: 100px;
}

#title {
    width: 100%;
    max-width: 400px;

    margin-right: 100%; /* Make the other element going to the next line */
}

#title-leaderboard {
    width: 100%;
    max-width: 500px;
}

@media screen and (min-width: 400px) {
    main {
        top: 50px;
    }
}

@media screen and (min-width: 600px) {
    main {
        top: 100px;
    }
}

.center-x-rel {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.center-y-rel {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.center-x-abs {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.center-y-abs {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-90px {
    left: 90px;
}