@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body{
    background-color: #3a4764;
    font-family: 'Montserrat';
    font-weight: 600;
    color: #eeeded;
    padding: 0;
    margin: 0;
}

.calc{
    position: fixed;
    inset: 0px;
    width: 18em;
    height: 50%;
    max-width: 100vw;
    max-height: 100dvh;
    margin: auto;
}

.calcScreen{
    display: grid;
    background-color: #191e32;
    border-radius: 16px;
    height: max-content;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-right: 8%;
    justify-items: end;
    align-items: center;
    word-break: break-all;
}
.calcScreen p{
    font-size: 33px;
}

.calcButton{
    background-color: #242c44;
    display: grid;
    grid-template-columns: repeat(4,72px);
    grid-template-rows: repeat(5,66px);
    justify-items: center;
    align-items: center;
    border-radius: 16px;
    width: max-content;
    height: 340px;
}

button {
    font-family: 'Montserrat';
    border: none;
    outline: none;
    background-color: #eeeded;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 800;
    color: #373439;
    border-radius: 5px;
    transition: all ease 0.1s;
    box-shadow: 0px 5px 0px 0px #a29bfe;
    
  }
  
button:active {
    transform: translateY(5px);
    box-shadow: 0px 0px 0px 0px #a29bfe;
}

.del{
    padding: 10px 10px;
    background-color: #626b91;
    color: #eeeded;
}

.reset{
    grid-row: 5/6;
    grid-column: 1/3;
    padding: 10px 34px;
    background-color: #626b91;
    color: #eeeded;
}

.equal{
    grid-row: 5/6;
    grid-column: 3/5;
    padding: 10px 55px;
    color: #eeeded;
    background-color: #cd4032;
}
