body {
    background-image: radial-gradient(rgb(215, 215, 113),white);
    height: 100vh;
    align-items: center;
}
h1 {
    font-size: 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
button {
    background-color: aqua;
    padding: 30px;
    border-radius: 20px;
}
#result {
    display: none;
    position: relative;
    left: 20px;
    width: 500px;
}
#result > p {
    background-color: rgb(177, 201, 151);
    letter-spacing: 1px;
    padding: 30px;
    border-radius: 30px;
}
#result button {
    background-color: rgb(205, 212, 166);
    letter-spacing: 1px;
    padding: 15px 25px;
    border-radius: 15px;
    cursor: pointer;
    margin-right: 10px;
    border: 1px solid #ccc;
}