12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /* styles.css */
- body {
- font-family: Arial, sans-serif;
- text-align: center;
- background-image: url('background.png'); /* Replace with your image path */
- background-size: cover; /* Ensures the image covers the entire background */
- background-position: contain; /* Centers the image both horizontally and vertically */
- background-repeat: no-repeat; /* Prevents the image from repeating */
- background-color: #000; /* Fallback color in case image doesn't cover the entire screen */
- margin: 0;
- padding: 0;
- color: #fff; /* Adjust text color for contrast */
- }
- .content {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- background: rgba(0, 0, 0, 0.5); /* Add transparency to make the text more readable */
- padding: 20px;
- border-radius: 10px;
- }
- h3 {
- color: #bada55; /* Adjusted color for better visibility */
- }
- h1 {
- font-size: 2.5em;
- }
- p {
- color: #ddd;
- }
- .buttons {
- margin-top: 20px;
- }
- .button {
- display: inline-block;
- padding: 10px 20px;
- margin: 5px;
- border-radius: 25px;
- text-decoration: none;
- font-size: 1em;
- color: white;
- transition: background-color 0.3s ease;
- }
- .button.blue {
- background-color: #4285f4;
- }
- .button.black {
- background-color: #333;
- }
- .button.green {
- background-color: #34a853;
- }
- .button.teal {
- background-color: #00bcd4;
- }
- .button.altstore {
- background-color: #13b0a9;
- }
- .button.red {
- background-color: #E4080A;
- }
- .button:hover {
- opacity: 0.8;
- }
|