
.infobox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px
}
@media only screen and (max-width: 900px) {
    .infobox {
        flex-direction: column;
    }
}

.skin {
    border: 2px solid white;
    border-radius: 5px;
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    height: 550px;
}

.skinImage {
    height: 500px;
    width: 230px;
    overflow: hidden;
}

.skinImage img {
    width: 100%;
    height: 100%;

}

@media only screen and (max-width: 900px) {
    .skin {
        width: 100%;
    }
}

.info {
    width: 70%;
    border: 2px solid white;
    border-radius: 5px;
    height: 550px;
}

.info h2 {
    font-family: 'MinecraftWOFF';
    font-size: 32px;
    height: 32px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat {
    border: solid 1px grey;
    border-radius: 4px;
    width: 45%;
    height: 70px;
    text-align: center;

}

.stat :nth-child(1) {
    font-size: 20px;
}

.stat :nth-child(3) {
    font-size: 26px;
}

@media only screen and (max-width: 900px) {
    .info {
        width: 100%;
    }
    .info h2 {
        font-size: 20px;
    }
    .stats {
        gap: 5px;
    }
    .stat {
        overflow: hidden;
        line-height: 1;
        width: 80%;
        height: 10%;
        padding: 2px;
        
    }
    .stat :nth-child(1) {
        font-size: 18px;
    }
    
    .stat :nth-child(3) {
        font-size: 16px;
    }
}

