*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}


body {
    min-height:100vh;
    background: linear-gradient(135deg, #12dcdc, #a1f4f4);

}

.parent {
    display: flex;
    padding-top:200px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

input {
    width: 100px;
    height: 26px;
}

button {
    padding: 8px 10px;
    background-color: #1691c9;
    color: white;
    border: none;
    border-radius: 4px;
    margin-left: 10px;
}

button:hover {
    background-color: #056c99;
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.108);
}
.your-guess , #guess{
    display: inline;
}