body { font-family: 'Cute Font', sans-serif; /* Replace with a cute font */ background-color: #f8f8f8; margin: 0; padding: 0; } /* Header */ header { background-color: #ffcccc; padding: 20px; text-align: center; } /* Main Content */ main { display: flex; flex-wrap: wrap; justify-content: space-around; } /* Dashboard Items */ .dashboard-item { background-color: #fff; border: 2px solid pink; border-radius: 10px; padding: 20px; margin: 20px; text-align: center; } /* Cute Button Style */ .cute-button { background-color: #ffcccc; border: 2px solid pink; border-radius: 5px; padding: 10px 20px; color: #fff; cursor: pointer; } /* Cute Text Style */ .cute-text { font-size: 18px; font-weight: bold; color: #ff69b4; } /* Kawaii Background Image */ .kawaii-background { background-image: url('kawaii-background.jpg'); /* Replace with your image */ background-size: cover; background-position: center; }