37 lines
611 B
CSS
37 lines
611 B
CSS
body {
|
|
background-color: #444;
|
|
color: white;
|
|
height: 100vh;
|
|
width: auto;
|
|
overflow: hidden;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
display: flex;
|
|
}
|
|
|
|
.titleBar {
|
|
text-align: center;
|
|
border: 2px;
|
|
border-radius: 2px;
|
|
border-color: white;
|
|
}
|
|
|
|
.titleBar h1 {
|
|
font-size: 40px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.centreBox {
|
|
height: 30vh;
|
|
width: fit-content;
|
|
position: relative;
|
|
top: 10%;
|
|
text-align: center;
|
|
align-items: center;
|
|
border: 2px;
|
|
border-radius: 2px;
|
|
border-color: white;
|
|
border-style: solid;
|
|
}
|
|
p {
|
|
font-size: 30px;
|
|
} |