body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-image: url('background.png');
    background-repeat: repeat;
    background-size: 200px 200px; /* Adjust the size as needed */
}

.frame {
    width: 80%;
    max-width: 600px;
    border: 10px solid #ffccff;
    border-radius: 15px;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.girl img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #ffccff;
}

.content {
    margin-top: 20px;
}

button {
    background-color: #ff69b4;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

button:hover {
    background-color: #ff1493;
}

.kawaii-heading {
    font-family: 'Comic Neue', cursive;
    color: #ff69b4;
    font-size: 2em;
    margin-bottom: 20px;
}
