* {
    margin: 0;
    padding: 0;
}

body {
    background:linear-gradient(white,aqua,white);

}

.head{
    font-size: 30px;
    display: inline;
    margin-left: 20px;
    margin-top: 10px;
    font-weight: 900;
}

.head1{
    color: red;
    display: inline;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

.Calculator {
    display: grid;
    grid-template-columns: repeat(4, 50px);
    background-color: white;
    box-shadow: -5px -5px 12px rgb(197, 194, 194), 5px 5px 12px rgb(214, 212, 212);
    width: 300px;
    height: 500px;
    border-radius: 30px;
    justify-content: space-between;
    padding: 20px;

}

.equal{
    background-color: black;
    color: white;
}

.equal:hover{
    background-color: rgb(58, 57, 57);
}

input {
    grid-column: span 4;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 30px;
    border-radius: 15px;
    width: 260px;
    background-color: rgba(0, 255, 255, 0.382);
    font-size: 30px;
    padding-left: 20px;
    box-shadow: -5px -5px 12px rgba(218, 216, 216, 0.7), 5px 5px 12px rgba(221, 220, 220, 0.567)
}

.operator{
    background-color: aqua;
    color: black;
}

.operator:hover{
    background-color: rgb(8, 215, 215);
}

input:focus {
    outline: none;
}

button {
    background-color:white;
    border: none;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 25px;
    box-shadow: -5px -5px 12px rgba(218, 216, 216, 0.7), 5px 5px 12px rgba(221, 220, 220, 0.567);
}

button:hover {
    background-color: aliceblue;

}

@media  screen and (max-width:600px) {
  
  body{
    overflow:hidden;
  }
    
.Calculator {
    display: grid;
    grid-template-columns: repeat(4, 50px);
    background-color: white;
    box-shadow: -5px -5px 12px rgb(197, 194, 194), 5px 5px 12px rgb(214, 212, 212);
    width: 800px;
    height: 920px;
    border-radius: 10px;
    justify-content: space-between;
    padding: 20px;
    position:relative;
    top: -135px;
    bottom:90px;
}

input {
    grid-column: span 4;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
    margin-bottom: 30px;
    border-radius: 10px;
    width: 440px;
    background-color: rgba(0, 255, 255, 0.382);
    position: relative;
    right: 15px;
    font-size: 60px;
    padding-left: 20px;
    box-shadow: -5px -5px 12px rgba(218, 216, 216, 0.7), 5px 5px 12px rgba(221, 220, 220, 0.567)
}

.head{
    font-size: 30px;
    display: inline;
    margin-left: 20px;
    margin-top: 0px;
    font-weight: 900;
}

.head1{
    color: red;
    display: inline;
}


button {
    background-color:white;
    border: none;
    width: 85px;
    gap: 5px;
    margin-bottom: 20px;
    position: relative;
    right: 18px;
    border-radius: 10px;
    font-size: 25px;
    box-shadow: -5px -5px 12px rgba(218, 216, 216, 0.7), 5px 5px 12px rgba(221, 220, 220, 0.567);
}

}