
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #2c2c2c;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    width: 250px;
    height: 500px;
    background-color: #353535; 
    border-radius: 15px;
}

.elementos{
    width: 100%;
    height: 100%;
    background-color: green;
}

.pessoa{
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #fff;

}

.img{
    background-image: url(img/raposa.png);
    background-color: #bbbbbb;
    background-position: center;
    width: 75px;
    height: 75px;
    background-size: cover;
    border-radius: 50%;
    border: solid 1px #8B0E14;
}