.main {
  width:80%;
  height:50%;
  border:solid 1px black;
  text-align: center;
  position: absolute;
  left:50%;
  transform: translateX(-50%);
  top:25%;
  border-radius: 15px;
  background-color: #0078db;
  color:white;
  font-size: 75px;
  margin:auto;
  place-content: center;
	transition: all .3s ease-in-out;
  cursor: pointer;
  user-select: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.main:hover {
  border: solid 2px black;
  width:100%;
  height:60%;
  top:20%;
}
body {
  width:100%;
  background-color: #efefef;
  height:100%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}
.navbar {
  width:100%;
  height:50px;
  top:0;
  left:50%;
  position: absolute;
  transform: translateX(-50%);
  background-color: white;
  padding-left: 50px;
  place-content: center;
  cursor: pointer;
  font-size: 18px;
}
.scoreSect {
  position: absolute;
  top:80%;
}