50 padding: 16px 30px; 51 margin: 5px; 52 text-decoration: none; 53 color: #fff; 54 background: linear-gradient(145deg, rgba(0,255,0,0.6), rgba(0,128,0,0.6)); 55 border-radius: 30px; 56 font-size: 16px; 57 text-align: center; 58 transition: background 0.3s, box-shadow 0.3s; 59 box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 60 } 61 .button:hover { 62 background: linear-gradient(145deg, rgba(0,255,0,0.8), rgba(0,128,0,0.8)); 63 box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4); 64 } 65 .extra-info { 66 font-size: 16px; 67 color: #cccccc; 68 margin-top: 20px; 69 text-align: center; 70 line-height: 1.6; 71 } 72 .metadata { 73 display: none; /* Hides metadata from visible page */ 74 } 75 76 77 78 79 80
81