29 lines
396 B
CSS
29 lines
396 B
CSS
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.center h1 {
|
|
font-size: 100px;
|
|
margin-top: 30vh;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.main-content {
|
|
height: 100vh;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.notification {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
z-index: 99999;
|
|
}
|