body {
    background-color: #fff0f5; /* Lavender Blush - a soft pink */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #d87093; /* Pale Violet Red */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    border: 3px dashed #ffb6c1; /* Light Pink */
    padding: 40px;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.5);
}

h1 {
    color: #ff69b4; /* Hot Pink */
    font-size: 2.5em;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.bow::before, .bow::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /* This is the knot */
    width: 10px;
    height: 10px;
    background-color: #ff69b4;
    border: 2px solid #d87093;
    border-radius: 50%;

    /* The loops are created with box-shadow */
    box-shadow: -13px 0 0 8px #ff69b4,
                -13px 0 0 10px #d87093,
                13px 0 0 8px #ff69b4,
                13px 0 0 10px #d87093;
}

.bow::before {
    left: -60px;
}

.bow::after {
    right: -60px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
}

