style.css 313 B

12345678910111213141516171819
  1. input{
  2. width: 200px;
  3. font-size: 25px;
  4. text-align: center;
  5. background-color: antiquewhite;
  6. }
  7. body{
  8. width: fit-content;
  9. display: flex;
  10. flex-direction: column;
  11. }
  12. #values{
  13. display: flex;
  14. justify-content: space-around;
  15. }
  16. p{
  17. background-color: antiquewhite;
  18. font-size: 20px;
  19. }