23 lines
526 B
CSS
23 lines
526 B
CSS
section {
|
|
width: 30%;
|
|
height: 400px;
|
|
height: auto;
|
|
padding: 8px;
|
|
margin: 16px;
|
|
background-color: color-mix(in srgb, var(--color-2) 40%, #00000000 60%);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 20px;
|
|
margin: 15px;
|
|
transition-duration: 0.25s;
|
|
backdrop-filter: blur(2px);
|
|
box-shadow: 0 0 10px var(--color-2);
|
|
}
|
|
sections {
|
|
width: 90vw;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |