Pratyush Desai
d3193b92dc
Set the base routing and base html Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
57 lines
790 B
CSS
57 lines
790 B
CSS
body {
|
|
background-color: #1c1c1c;
|
|
color: #bfbfbf;
|
|
font-family: 'Courier New', Courier, monospace;
|
|
text-align: center;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1 {
|
|
color: #e0b0ff; /* Rose Pine hint */
|
|
margin-top: 30px;
|
|
}
|
|
|
|
h2 {
|
|
color: #ff79c6; /* Rose Pine inspired soft magenta */
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
max-width: 800px;
|
|
}
|
|
|
|
.games {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.game {
|
|
margin: 20px;
|
|
}
|
|
|
|
.game img {
|
|
width: 200px;
|
|
height: 200px;
|
|
border: 2px solid #ff79c6;
|
|
}
|
|
|
|
.section {
|
|
margin: 40px 0;
|
|
padding: 20px;
|
|
background-color: #282828;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
a {
|
|
color: #e0b0ff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|