| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .footer {
- margin-top: 100px;
- font-family: 'Quicksand', sans-serif;
- width: 100%;
- height: auto;
- }
- .footer-header {
- width: 100%;
- height: 60px;
- background-color: #341a42;
- position: relative;
- }
- .form-container {
- background-image:
- linear-gradient(rgba(157, 93, 93, 0.117), rgba(157, 93, 93, 0.003)),
- url(../img/fondo.jpg);
- width: 60%;
- height: 120px;
- max-height: 120px;
- position: absolute;
- top: -61px;
- left: 50%;
- transform: translateX(-50%);
- box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
- border-radius: 8px;
- padding: 20px;
- }
- .footer-info {
- width: 100%;
- height: 100px;
- background-color: #76225e;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .info-container {
- display: flex;
- background-color: aqua;
- }
- .part{
- max-width: 250px;
- }
- .donation-list{
- list-style: none;
- }
- .footer-title{
- display: flex;
- align-items: center;
- justify-content: space-around;
- }
- .footer-title-in{
- display: flex;
- flex-direction: column;
- }
- .titleC {
- font-size: 20px;
- font-family: 'Caveat', cursive;
- font-weight: 600;
- color: #ff3232;
- }
- .footer-end {
- width: 100%;
- height: 100px;
- background-color: #341a42;
- }
|