*,
::after,
::before {
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    background-color: #000000;
    color: #00ff00;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.centered-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    text-align: center;
}

a {
    color: #00ff00;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.8;
}

p {
    font-size: 20px;
    font-weight: bold;
}


@media (max-width: 575.98px) {
    #bitcoin-address {
        font-size: 3.6vw;
    }
}

.fsociety {
    max-width: 150px;
    margin-top: 50px;
}

.stars-container {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
    width: 100%;
    margin-bottom: 50px;
}

.stars-container>a {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}

#mr-robot-quote {
    margin-top: 20px;
}

.rabbit-image {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 42.0px;
    height: auto;
}

.highscores {
    width: 100%;
    color: #00ff00;
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
    margin: 20px 0;
}

.highscores table {
    width: 100%;
    border-collapse: collapse;
}

.highscores th,
.highscores td {
    border: 1px solid #00ff00;
    padding: 8px;
    text-align: left;
}

.highscores th {
    background-color: #003300;
}

.highscores th:nth-child(1),
.highscores td:nth-child(1),
.highscores th:nth-child(4),
.highscores td:nth-child(4) {
    width: 30px;
    text-align: center;
}

.score-icon {
    width: 30px;
    height: auto;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
}

.stats-column {
    flex: 1;
    min-width: 100px;
}

@media screen and (max-width: 600px) {
    .stats-column {
        flex-basis: 50%;
    }
}

.stats-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    flex-direction: column;
}

.stats-content h1 {
    margin: 0;
}


.stats-content p {
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}