Spaces:
Running
Running
/* CSS Document */ | |
body { | |
background-color: #000000; | |
color: #FFFFFF; | |
font-family: 'Roboto', sans-serif; | |
margin: 0; | |
padding: 0; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
} | |
h1 { | |
text-align: center; | |
color: #E6E6E6; | |
margin-bottom: 20px; | |
} | |
p, li { | |
line-height: 1.6; | |
} | |
.container { | |
max-width: 800px; | |
padding: 20px; | |
background-color: #333333; | |
border-radius: 10px; | |
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.75); | |
margin: 20px; | |
} | |
a { | |
color: #3DBB3D; | |
text-decoration: none; | |
} | |
@media screen and (max-width: 800px) { | |
.container { | |
width: 90%; | |
} | |
} | |