25 lines
306 B
CSS
25 lines
306 B
CSS
|
:root {
|
||
|
--circles: #ff9ff3;
|
||
|
--background: #f368e0;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.flex {
|
||
|
align-items: center;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
}
|
||
|
|
||
|
.scene {
|
||
|
background: var(--background);
|
||
|
height: 100vh;
|
||
|
}
|
||
|
.scene__animation {
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
}
|