* 
{
    margin: 0;
    padding: 0;
}

body
{   
    display: flex;
    flex-direction: column;
    background-color: #E9FFF9 ;
    height: 100dvh;
    justify-content: center;
    align-items: center;
    background-color: #779FA1;
}

.clc-container
{
    display: flex;
    flex-direction: column;
    flex: 1;
    /* border: 1px yellow solid; */
    justify-content: center;
    align-items: center;
}

.clc-outer
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 650px;
}

.clc-inner
{   
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 20px;
    width: 96%;
    height: 96%;
    background: #9D6381;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #B892FF, #EFB0A1);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to top, #B892FF, #EFB0A1);
    gap: 32px;
    background-color: rgba(185, 148, 255, 1);
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.output
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20%;
    width: 90%;
    color: #262322;
    border: 1px blueviolet solid;
    margin-top: 16px;
    border-radius: 10px;
    background: #9D6381;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #B892FF, #C879FF);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #B892FF, #C879FF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

.output .numbers
{   
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    height: 90%;
    /* border: 1px red solid; */
    font-size: 45px;
    font-family: 'Calibri', 'Times New Roman', Times, serif;
}

.clc-buttons
{
    display: flex;
    justify-content: space-evenly;
    width: 90%;
    flex: 1;
    margin-bottom: 32px;
    user-select: none;
}

.col
{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
}

.button
{   
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: black;
    width: 70px;
    height: 60px;
    border-radius: 5%;
    background-color: rgba(233, 255, 249, .7);
    box-shadow: rgba(7, 16, 27, 0.4) 0px 0px 0px 2px, rgba(4, 11, 19, 0.65) 0px 4px 6px -1px, rgba(0, 0, 0, 0.08) 0px 1px 0px inset;
}

.enter
{
    min-height: 138px;
    border-radius: 10px;
}

.footer-container
{
    margin-bottom: 10px;
}

.footer-container .links img
{
  height: 30px;
  width: 30px;
}

.footer-container .git
{
  margin-bottom: 4px;
}

.footer-container .git,
.footer-container .link
{
  transition: transform 0.3s ease-in-out;
}

button:hover
{
  transform:scale(1.06);
  border: 1px solid rgba(31, 31, 31, 0.4);
  background-color: rgb(74, 123, 157);
}

.footer-container 
{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
}

.footer-container .git img:hover,
.footer-container .link:hover
{
  transform:rotate(360deg) scale(1.2);
}
.links 
{
  display: flex;
  width: 400px;
  align-items: center;
  justify-content: center;
  gap: 50px;
}