body {
    margin: 0;
    font-family: "Comic Sans MS", Arial;
    background-color: #ffeef5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffb6d9;
    padding: 15px;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: white;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.container {
    padding: 40px;
}

.card {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
}

.cute-btn {
    background-color: #ff9ecf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.cute-btn:hover {
    background-color: #ff7fbf;
}

.item-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    margin-top: 15px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 400px;
}

.item-img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-right: 15px;
}

.item-info a {
    color: #ff7fbf;
    text-decoration: none;
}