Spaces:
Running
Running
| body { | |
| font-family: Arial, sans-serif; | |
| margin: 0; | |
| padding: 0; | |
| background-color: #f4f4f4; | |
| } | |
| header { | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| background-color: #fff; | |
| padding: 10px 20px; | |
| box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | |
| } | |
| header .logo img, header .logo-right img { | |
| height: 50px; | |
| } | |
| header .logo-right { | |
| margin-left: auto; | |
| } | |
| nav ul { | |
| list-style: none; | |
| display: flex; | |
| margin: 0; | |
| padding: 0; | |
| } | |
| nav ul li { | |
| margin-left: 20px; | |
| } | |
| nav ul li a { | |
| text-decoration: none; | |
| color: #333; | |
| font-weight: bold; | |
| } | |
| .container { | |
| text-align: center; | |
| padding: 50px; | |
| background-color: #e0e0e0; | |
| } | |
| .container h1 { | |
| font-size: 2.5em; | |
| margin-bottom: 10px; | |
| } | |
| .container p { | |
| font-size: 1.2em; | |
| margin-bottom: 30px; | |
| } | |
| .buttons button { | |
| background-color: #6200ea; | |
| color: #fff; | |
| border: none; | |
| padding: 15px 30px; | |
| margin: 10px; | |
| font-size: 1em; | |
| cursor: pointer; | |
| border-radius: 5px; | |
| } | |
| .buttons button:hover { | |
| background-color: #3700b3; | |
| } | |
| .pdf-icon img { | |
| width: 100px; | |
| margin-top: 30px; | |
| } | |
| footer { | |
| text-align: center; | |
| padding: 10px 0; | |
| background-color: #fff; | |
| box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); | |
| position: fixed; | |
| width: 100%; | |
| bottom: 0; | |
| } | |