* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Arial", sans-serif;
  background: linear-gradient(to right, #6a11cb, #2575fc);
}

.header {
  color: white;
  text-align: center;
  padding-top: 55px;
}


.main{
  width:100%;
  height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  height: 420px;
  width: 300px;
  background-color: #0f0f0f;
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  padding: 20px;
}
.box {
  background-color: #acc9e5cf;
  color: whitesmoke;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 520;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box:hover {
  cursor: pointer;
  transform: scale(1.06);
  transition-duration: 1s;
}
.item1 {
  grid-column: 1/5;
  background-color: #818281d2;
  color: white;
  border-radius: 15px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 13px;
  height: 70px;
  font-weight: 550;
  font-size: 30px;
  box-shadow: 0 0 4px rgb(147, 147, 245);
  margin-bottom: 5px;
}
.item1:hover {
  transform: scale(1);
}

.opt {
  background-color: rgb(246, 210, 100);
  color: black;
  font-weight: 700;
}

.equal {
  grid-column: 1/3;
  background-color: #52f5bf;
}

.login-div{
  position: absolute;
  top: 620px;
  font-size: 30px;
}
.login-link{
  color: white;
}