body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #212121;
    /* margin: 50px 550px; */
    /* display: flex; justify-content: center; */
    display: grid;
    justify-content: center;
}
h1 {
    color: white;
    text-align: center;
}

input{
    width: 500px;
    height: 20px;
    padding: 10px;
    margin: 20px 15px;
    color: black;
    border: 2px solid #18cc5d;
    outline: none;
    font-size: x-large;
    font-weight: 500;
    border-radius: 5px;
}

button {
    padding: 10px 15px;
    background-color: #24be48;
    color: rgb(255, 255, 255);
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 10px 0px;
    white-space: nowrap
}

button:hover {
    background-color: #009c22;
}

div {
    color: white;
    font-weight: 500;
    font-size: x-large;
    display: flex; justify-content: center; justify-content: space-between;
    /* margin: 10px 50px; */
    align-items: center;
    width: 600px;
    border: #009c22;
    word-break: break-word;
}

#inputandbutton {
    display: flex;
}

