.square{
    width: 100px;
    height: 100px;
    vertical-align: top;
    background-color: transparent;
    font-family: comic-sans,sans-serif;
    border: 2px solid #b7ff00;
    box-shadow: 2px 2px 20px inset #b7ff00;
    transition: all 0.5s ease;
    

}

.square:nth-child(2) {
    border-right: 0;
    border-left: 0;
    border-color: #b7ff00;
    box-shadow: hsl(71, 100%, 50%);
}

.row:nth-child(2) .square {
    border-top: 0;
    border-bottom: 0;
    border-color: #b7ff00;
    box-shadow: hsl(71, 100%, 50%);
}

#reset{
    background-color: darkgoldenrod;
    width: 100px;
    height: 50px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 1000;
    border: 0px;
    border-radius: 1000px;

}

#reset:hover{
    background-color: rgba(184, 135, 11, 0.824);
    transition: all 0.5s ease;
}

#allign-middle{
    text-align: center;
}
.wincolor{
    background-color: rgb(135, 165, 0);
}


.invisible{
    visibility: hidden;
}
p{
    font-family: 'Courier New', Courier, monospace;
    font-weight: 800;
    color: rgb(0, 123, 176);
    transition: color 0.5s ease;
}

body{
    background-color: rgb(0, 42, 61);
    transition: all 0.5s ease;
}
.fa-circle-notch{
    color: #ff0000;
    transition: all 0.5s ease;
}
.fa-x{
    color: #002fff;
    transition: all 0.5s ease;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}


.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  transition: background-color 0.5s ease;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #48ff00;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}