50 lines
574 B
CSS
50 lines
574 B
CSS
h1 {
|
|
text-align: center;
|
|
}
|
|
|
|
#score {
|
|
text-align: center;
|
|
font-size: 30px;
|
|
}
|
|
|
|
|
|
.main {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|
|
|
|
.box {
|
|
width: 200px;
|
|
height: 250px;
|
|
|
|
border: 5px solid black;
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.box img {
|
|
width: 150px;
|
|
}
|
|
|
|
|
|
.card-img {
|
|
width: 200px;
|
|
height: 200px;
|
|
}
|
|
|
|
.card-img img {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.card-imgs {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 20px;
|
|
} |