divsqr {
  width: 30px;
  height: 30px;
  background-color: red;
  position: absolute;
  top: 0%;
  bottom: 30%;
  left: 30%;
  right: 30%;
  margin: auto;
  animation-name: cube;
  animation-duration: 4s;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

@keyframes cube {
  0% {
    background-color: red;
    object-fit: cover;
    left: 0px;
    top: -200px;
  }
  25% {
    background-color: yellow;
    left: 1100px;
    top: -200px;
  }
  50% {
    background-color: blue;
    left: 1100px;
    top: 200px;
  }
  75% {
    background-color: orange;
    left: 0px;
    top: 200px;
  }
  100% {
    background-color: red;
    left: 0px;
    top: -200px;
  }
}
/* Box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox*/
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

input:checked + .slider {
  background-color: #2196f3;
}

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

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

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

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

/*Light-Dark theme toggler variables */

/*Variables for default dark mode */
:root {
  --primary-color: #9a97f3;
  --secondary-color: #818cab;
  --font-color: #e1e1ff;
  --bg-color: #0f0f0b;
  --heading-color: #818cab;
}

/*Variables for nerd light mode */
[data-theme="light"] {
  --primary-color: #302ae6;
  --secondary-color: #536390;
  --font-color: #424242;
  --bg-color: #fff;
  --heading-color: #292922;
}

/*Setting variables for body tag */
body {
  background-color: var(--bg-color);
  color: var(--font-color);
}

/*Setting variables for h1 tag */

@font-face {
  font-family: Roboto;
  src: url("fonts/Roboto-Black.ttf");
}
h1 {
  color: var(--font-color);
  text-align: center;
  font-size: 90px;
  font-family: Roboto;
}

@font-face {
  font-family: VictorMono;
  src: url(fonts/VictorMono-Italic.ttf);
}
h3 {
  color: var(--font-color);
  text-align: center;
  font-size: medium;
  font-family: VictorMono;
  white-space: nowrap;
  padding-top: 3px;
}

img {
  border-radius: 20%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

a.button3 {
  display: inline-block;
  padding: 0.3em 1.2em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 2em;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #ffffff;
  background-color: #4eb5f1;
  text-align: center;
  transition: all 0.2s;
}
a.button3:hover {
  background-color: #4095c6;
}
@media all and (max-width: 30em) {
   a.button3 {
    display: block;
    margin: 0.2em auto;
  }
}
