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

body {
  background: whitesmoke; 
  font-family: Arial, Helvetica, sans-serif;
}

#input-section{
    background: blueviolet;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

h1{
    margin-bottom: 20px;
    text-align: center;
}

#input-el{
    margin-bottom: 20px;
    background: blueviolet;
    border: 2px solid white;
    width: 100px;
    height: 80px;
    border-radius: 10px;
    color: white;
    font-size: 35px;
    text-align: center;
    font-weight: bold;
}

button{
    color: black;
    background: white;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
    width: 100px;
}

.display-div{
    background: white;
    width: 80%;
    margin-left:  auto;
    margin-right: auto;
    margin-top: 30px;
    text-align: center;
    color: blueviolet;
    padding: 20px;
    border-radius: 10px;
}

.display{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.display p{
    color: black;
    margin-top: 10px;
}