32 lines
457 B
CSS
32 lines
457 B
CSS
.box {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
transform: translate(-50%, -50%);
|
|
padding: 60px 40px;
|
|
background-color: var(--bright);
|
|
text-align: center;
|
|
min-width: 400px;
|
|
}
|
|
|
|
.box .sec-msg {
|
|
color: var(--light);
|
|
font-size: smaller;
|
|
}
|
|
|
|
.box .main-msg {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.box .logo {
|
|
width: 140px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.box p {
|
|
text-align: justify;
|
|
}
|
|
|
|
/* body {
|
|
filter: grayscale(1);
|
|
} */
|