/* Basic styling for navigation */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; } nav { background-color: #4CAF50; padding: 10px 20px; color: white; display: flex; justify-content: space-between; align-items: center; } nav a { color: white; text-decoration: none; margin: 0 10px; font-weight: bold; } nav a:hover { text-decoration: underline; } #wrapper { padding: 20px; } .boxCont { margin-bottom: 10px; } button { padding: 10px 20px; font-size: 16px; cursor: pointer; }