body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: white;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 100px;
}

img {
    width: 250px;
}

h1 {
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    gap: 50px;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #c89c44;
    color: black;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #EEC573;
}
