body {
    background-color: pink;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

img {
    width: 200px;
    border-radius: 10px;
}

h1 {
    font-size: 36px;
    margin-top: 20px;
}

p {
    font-size: 20px;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    justify-content: space-around;
}

button {
    padding: 10px 20px;
    border: 2px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.633);
    
}