File size: 1,263 Bytes
194ff6b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
body {
margin: 0;
padding: 0;
background-color: #1e1e1e; /* dark grey */
font-family: Arial, sans-serif;
color: #ffffff;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
text-align: center;
width: 90%;
max-width: 500px;
padding: 1rem;
}
/* REMOVE max-width on mobile */
@media (max-width: 500px) {
.container {
max-width: none;
}
}
.logo {
width: 100px;
margin-bottom: 1rem;
margin-top: 25px;
}
h1 {
margin-bottom: 2rem;
font-size: 2rem;
color: #ffffff;
}
#image-container img {
max-width: 100%;
border-radius: 10px;
margin-bottom: 2rem;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
input[type="text"] {
width: 100%;
padding: 1rem;
margin-bottom: 1.5rem;
border: none;
border-radius: 5px;
font-size: 1rem;
}
#pay_button {
padding: 1rem 2rem;
font-size: 1.2rem;
background-color: #7c3aed; /* purple button */
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#pay_button:hover {
background-color: #6d28d9;
}
.result-text {
margin-top: 1rem;
font-size: 1rem;
color: #ff6b6b;
}
|