*{
    padding: 0;
    margin: 0;
}
.para-container{
    height: 1000px;
    color: white;
    background-color: rgb(22, 20, 20);
    border-radius: 40px;
    font-size: 50px;
    display: flex;
    padding-right: 1%;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: -5px 5px 10px #282828;
    transition: transform 1.5s ease;
    flex-direction: column;
    
}
.display-calculation{
    max-width: 100%;
    word-wrap:break-word;
    align-self: flex-end;
}
.para-container:hover{
    transform: scale(1.015); 
}
.input-button:hover {
    transform: scale(1.05);    
}
#AC{
    background-color: #bfbfbf;
    color: #7b7b7b;
}
#DEL{
    background-color: #bfbfbf;
    color: #7b7b7b;
}
.calculator-layout{
    display: flex;
    flex-direction: column;
    background-color: #333333;
    width: 400px;
    height: 700px;
    padding: 25px;
    border-radius: 40px;
    box-shadow: -20px 20px 10px #2f2b3a;
    transition: transform 1s ease;
}
.calculator-layout:hover{
    transform: scale(1.012);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
    background-color: #2b2b2b;
    flex-direction: column;
}
.line{
    background-color: #333333;
    display: flex;
    justify-content: space-between;
    height: 100%;
}
.input-button{
    flex-grow: 1;
    margin: 5px;
    font-size: 40px;
    border-radius: 40px;
    border: none;
    background-color: #565656;
    box-shadow: -5px 5px black;
    color: white;
    transition: transform 0.3s ease;
    flex-basis: 0;
}
.operator{
    background-color: #d8b549;
}
body{
    background-color: #2b2b2b;;
}
.copyright{
    color: white;
    text-align: center;
    overflow: hidden; 
}
.footer{
    display: flex;
    flex-direction:row;
    justify-content: center;
    align-items: center;
    
}
img{
    width: 20px;
    height: 20px;
    margin-left: 5px;
}
img:hover{
    background-color: blueviolet;
    border-radius: 15px;
}
.zero{
    flex-grow: 2.3;
}
.divide{
    flex-grow: 0.7;
}
.warning-container{
    display: flex;
    align-items: center;
    background-color: #e46658c4;
    border-radius: 10px;
    color: #000000b9;
}
.alert-icon{
    width: 60px;
    height: 60px;
    flex-basis: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 35px;
    font-weight: bold;
    background-color: #eb8277c4;
    border-radius: 10px;
}
.alert-content{
    flex-basis: 1;
    font-size: 25px;
    flex-grow: 1;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 3%;
}
#error{
    font-size: 22px;
    font-weight: bold;
}