@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@500&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    font-family: Gotham Rounded, sans-serif;
    font-weight: normal;
  }
  
  body {
    padding: 0;
    margin: 0;
    background-color: #FFCACA;
  }
  
  .container-grid {
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: 100vh;
    grid-template-columns: repeat(4, 100px);
    grid-template-rows: minmax(120px, auto) repeat(5, 100px);
  }
  
  .container-grid > button {
    cursor: pointer;
    font-size: 2rem;
    border: 1px solid #372948;
    outline: none;
    background-color: rgba(55, 41, 72, .87);
    color: #f5eded
}

.container-grid > button:hover {
    background-color: rgba(55, 41, 72, .9);
}

.span-two {
    grid-column: span 2;
}

.output {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex-direction: column;
    padding: 10px;
    background-color: #251B37;
    color: #f5eded;
    word-wrap: break-word;
    word-break: break-all;
  }

  .output #previous-input{
    color: #b1acac;
    font-size: 1.5rem;
  }

  .output #current-input{
    color: #f5eded;
    font-size: 2.5rem;
  }