Spaces:
Running
Running
File size: 763 Bytes
25ab9e2 | 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 | #main-container {
max-width: 900px;
margin: 0 auto;
}
p a {
color: #57a1a9; /* Same as button background color */
font-weight: bold; /* Makes the link text bold */
}
/* Hover state */
p a:hover {
color: #345e63; /* Same as hover background color for the button */
text-decoration: underline; /* Underlines the link on hover */
}
.custom-button {
background-color: #57a1a9; /* Green background */
color: white; /* White text */
padding: 10px 20px; /* Padding */
border: none; /* No border */
cursor: pointer; /* Pointer cursor */
font-size: 16px; /* Font size */
}
.custom-button:hover {
background-color: #345e63;
}
|