74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
body {
|
|
font-family: 'Arial', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
header {
|
|
background-color: #ff99cc; /* Light pink background */
|
|
color: #00CBF6; /* Light blue text */
|
|
text-align: center;
|
|
padding: 1em;
|
|
position: relative;
|
|
}
|
|
|
|
nav {
|
|
background-color: #ff99cc; /* Light pink background */
|
|
color: #00CBF6; /* Light blue text */
|
|
padding: 0.5em;
|
|
}
|
|
|
|
nav ul {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
nav ul li {
|
|
display: inline;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
nav a {
|
|
text-decoration: none;
|
|
color: #00CBF6; /* Light blue text */
|
|
}
|
|
|
|
main {
|
|
padding: 20px;
|
|
}
|
|
|
|
.game {
|
|
border: 1px solid #ff99cc; /* Light pink border */
|
|
background-color: #ACE9F6; /* Light blue background */
|
|
padding: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.game img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
footer {
|
|
background-color: #ff99cc; /* Light pink background */
|
|
color: #00CBF6; /* Light blue text */
|
|
text-align: center;
|
|
padding: 1em;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Girly font for headings and paragraphs */
|
|
h1, h2, p {
|
|
font-family: 'Pacifico', cursive;
|
|
}
|
|
|
|
.popcorn {
|
|
max-width: 6rem;
|
|
}
|
|
|
|
.game-video {
|
|
max-width: 100%;
|
|
}
|