* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(199, 241, 187);
}

h1 {
    text-align: center;
    margin: 40px 0 40px;
}

p {
    background-color: rgba(60, 199, 9, 0.922);
    width: 200px;
    height: 40px;
    font-size: 32px;
    margin-bottom: 10px;
    border: 1px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    margin: 0 auto;
    width: 400px;
    height: 400px;
    border: 20px solid black;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.buttons {
    width: 200px;
    display: flex;
    justify-content: space-between;
}

button {
    background-color: black;
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
}