body{ font-family: Arial,sans-serif; background-size: cover; background-repeat: no-repeat; background-position: center; background-color: beige; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; } .container{ background-color: #faf4f5; padding: 20px; border-radius: 15%; width: 100%; height: 100%; max-width: 500px; max-height: 450px; } header h1{ display: flex; text-align: center; color: #333; } .profile-section{ margin-top: 20px; } .profile-box{ display: flex; align-items: center; gap: 20px; } .profile{ width: 80px; height: 80px; border-radius: 50%; overflow: hidden; background-color: #ddd; box-shadow: 0 0 10px rgba(0,0,0,0.1); } .profile img{ width: 100%; height: 100%; object-fit: cover; } .profile-info .stat{ margin-bottom: 10px; } .profile-info label{ font-weight: bold; } .profile-info span{ font-size: 16px; color: #555; } .actions{ margin-top: 20px; text-align: center; } button{ background-color: #28a745; color: #fff; border: none; padding: 10px 20px; margin: 5px 0; border-radius: 5px; cursor:pointer; } button:hover{ background-color: #218838; } #share { padding: 10px 20px; background-color: blue; /* Change to blue */ color: white; font-size: 16px; text-align: center; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } #share:hover { background-color: darkblue; /* Darker blue on hover */ }