16 lines
396 B
CSS
16 lines
396 B
CSS
.container-index {
|
|
position: fixed;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 80%;
|
|
height: 80%;
|
|
border-radius: 20px;
|
|
backdrop-filter: blur(3px);
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
} |