/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background-color: #d88c8c; /* softer pink */
}

/* HEADER */
header {
    background: #000;
    color: white;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and text */
}

/* Logo Image */
.logo-img {
    width: 40px;  /* adjust size if needed */
    height: auto;
}

/* Logo Text */
.logo-text {
    font-size: 24px;
    font-weight: bold;
}

.menu {
    font-size: 26px;
    cursor: pointer;
}

/* MAIN */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px; /* more breathing room */
    padding: 40px 20px;
}

/* CARD */
.card {
    width: 100%;
    max-width: 340px;
    text-align: center;
}

/* Image */
.card img {
    width: 100%;
    border-radius: 4px 4px 0px 0px;
    display: block;
}

/* Description Box */
.description {
    background: #dcdcdc;
    padding: 18px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0px 0px 4px 4px;
}

/* Button */
button {
    margin-top: 25px;
    padding: 14px 35px;
    border: none;
    border-radius: 30px;
    background: #e6e6e6;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background: #cfcfcf;
    transform: scale(1.05);
}