23 lines
370 B
CSS
23 lines
370 B
CSS
.p3 {
|
|
background-color: #00c8ff;
|
|
}
|
|
|
|
.p3 section {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1em;
|
|
flex-wrap: 1 1 100px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.p3 section div {
|
|
background-color: white;
|
|
box-shadow: 0px 0px 3px black;
|
|
padding: 5em 10px;
|
|
box-shadow: 0px 4px 16px #00000055;
|
|
text-align: center;
|
|
translate: 0px -75px;
|
|
width: 400px;
|
|
margin: 1em;
|
|
}
|