32 lines
513 B
CSS
32 lines
513 B
CSS
body {
|
|
background-image: url('images/arcade.png');
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #242424;
|
|
margin: 100px auto;
|
|
max-width: 50%;
|
|
}
|
|
.logo {
|
|
align-self: center;
|
|
justify-self: center;
|
|
display: block;
|
|
margin: -130px auto;
|
|
}
|
|
h1 {
|
|
color: #ffffff;
|
|
}
|
|
h3 {
|
|
color: #ffffff;
|
|
}
|
|
p {
|
|
color: #ffffff;
|
|
}
|
|
ul {
|
|
color: #ffffff;
|
|
} |