body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
}

.content, .image {
    flex: 1;
    padding: 20px;
}

.content {
    max-width: 600px;
}

.image img {
    width: 100%;
    height: auto;
    display: block;
}

.button1 {
    padding: 10px 20px;
    background-color: #071529;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
.button2 {
    padding: 10px 20px;
    background-color: #460734;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}
.button3 {
    padding: 10px 20px;
    background-color: #244505;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 10px;
}

button:hover {
    background-color: #0051cc;
}
