body {
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.content {
    display: flex;
    background-color: #e2c2e9;
    padding: 20px;
    border-radius: 8px;
    width: 80%; 
}

.text {
    flex: 1; 
    padding-right: 20px; 
}

.image {
    flex: 1; 
    display: flex;
    justify-content: center; 
    align-items: center; 
}

.image img {
    max-width: 50%; 
    border-radius: 10px;
    height: auto; 
}

.container:hover {
    background-color: #ebb3d4;
}

h1 {
    color: #333;
}

p {
    color: #000000;
}

.button-group {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    color: #fff;
    background-color: #d368af;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ff008c;
}
