body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: url(images/parquet.jpg);
    display: flex;
    justify-content: center;
    align-items: center;  
    height: 100vh;
}

#card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.toy-card {
    width: 300px;
    text-align: center;
    transition: box-shadow 0.3s ease-in-out;
    background-image: url(images/barbarian-bg.jpg);
    background-size: 375px;
    border-radius: 30px;
    height: 475px;
}

.toy-card:hover {
    box-shadow: 10px 40px 15px rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    cursor: pointer;
}

.toy-card:hover .toy-card__image img {
    transform: scale(1.1) translateY(-17px);
}

.toy-card__image{
    background-size: 200%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.toy-card__image img {
    width: 50%;
    padding-top: 10px;
    transition: transform 0.3s ease-in-out;
}

.toy-card__name {
    font-weight: bold;
    font-size: 22px;
    color: #000000;
    background-color: #EA953C;
    padding: 5px;
}

.toy-card__description {    
    font-size: 14px;
    color: #959595;
    background-color: white;
    padding: 10px;
    border-radius: 0 0 15px 15px;
}

.toy-card:hover .toy-card__description {  
    border-radius: 0 0 0 0;
}

.toy-card__unit-stats {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #EA953C;
    height: 0;
    opacity: 0;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.toy-card:hover .toy-card__unit-stats {
    opacity: 1;
    height: 50px;
    border-radius: 0 0 15px 15px;
}

.stat-block {
    text-align: center;
    color: #fff;
}

.stat {
    font-size: 18px;
    font-weight: bold;
    color: white;
}

.stat-value{
    color: white;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
}

.one-third {
    border-right: 2px solid #AF6516;
    box-sizing: border-box;
    width: 30%;   
}

.three-third {
    border-left: 2px solid #AF6516;
    box-sizing: border-box;
    width: 30%;
}

.one-third:hover div{
    color: black;
    transition: 0.3s ease-out;
}

.two-third:hover div{
    color: black;
    transition: 0.3s ease-out;
}

.three-third:hover div{
    color: black;
    transition: 0.3s ease-out;
}