@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #131313;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    max-height: fit-content;
    margin: 0;
}

a {
    color: inherit;
}

.container {
    background-color: #1d1d1d;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    max-width: 100%;
    max-height: auto;
    min-height: 350px;
    margin: 20px;
}

.refresh {
    border: 0;
    background-color: white;
    color: black;
    border-radius: 10px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    margin-top: 15px;
}

.refresh:active {
    transform: scale(0.95);
}
.refresh:focus {
    outline: 0;
}

.stats-container {
    width: 100%;
    height: auto;
}

.title {
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.stats {
    display: flex;
    justify-content: center;
    flex-flow: wrap;
}

.stats-item {
    width: 250px;
}

.xyz {
    font-size: 20px;
    margin: 0;
    font-weight: 700;
}

p {
    margin: 5px;
}

.fas {
    font-size: 36px;
}

.footer {
    font-size: 12px;
    text-align: center;
}

@media(max-width: 830px) {
    hr {
        display: none;
    }
    .stats-item {
        padding-top: 40px;
        width: 150px;
    }
    .refresh {
        margin-top: 30px;
    }
}

@media(max-width: 525px) {
    .stats-item {
        padding-top: 40px;
        width: 250px;
    }
}