* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;

  background: linear-gradient(#ED0E98, #FE5A2D);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}


body {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.calc-container {
    background-color: #212327;
    width: 300px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content:  flex-end;
    border-radius: 10px;
}

.display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 20px;
    gap: 10px;
}

.display-selections {
    color:#CCCDD7;
}

.display-value {
    color: white;
    min-height: 50px;
    font-size: 40px;
}

.btn-container-bg {
    display: flex;
    justify-content: center;
    background-color: #27292E;
    border-radius: 30px 30px 10px 10px;
    width: 300px;
    height: 350px;
    padding: 20px;
}

.btn-container {
    display: flex;
    width: 250px;
    gap: 10px
}

.btn-container button:not([data-type]) {
    border: none;
    background-color: #27292E;
    width: 50px;
    min-height: 50px;
    max-height: 50px;
    border-radius: 100%;
    color: #CCCDD7;
    font-size: 20px;
}

.btn-left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 5px;
}



.btn-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 15px;
    
}

.normal-size {
    flex: 0 0 15%;
  

}

.wide-size {
    display: flex;
    flex: 0 0 40%;
    align-items: center;
    justify-content: center;

}


#light-color {
    background-color: #313338;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.equal {
  background-image: linear-gradient(#ED0E98, #FE5A2D);
  border: none;
  border-radius: 50px;
  max-height: 105px;
  color: #CCCDD7;
  font-size: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

}

.ac-text {
    background: linear-gradient(#ED0E98, #FE5A2D);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}

#color-mode {
    border: 2px solid #313338;
    display: flex;
     background: none;
    justify-content: center;
    align-items: center;
}

button:hover {
    background-color: #FE5A2D !important; 
    color: white; 
    cursor: pointer;
    transform: scale(1.05); 
  }

button:active {
    background-color: #ED0E98 !important;
}

.equal:hover {
    background-color: #FE5A2D !important; 
    color: white; 
    cursor: pointer;
    transform: scale(1.05); 
}

.equal:active {
    background-image: linear-gradient( #FE5A2D, #ED0E98);
}

