/* body, html {   
    width: 100%;
    height: 90%;
    margin: 0;
    padding: 0;
    display:table;
} */

body {
  background-color: #fbfbfb;
  /* display:table-cell;
                padding-top: 20px; */
  /* vertical-align:middle; */
  text-align: center;
  font-size: 20px;
  font-family: monospace;
}

.float-right{
  float: right;
  padding:0%;
}

.dark-mode-toggle {
  cursor: pointer;
  background-color: rgb(212, 212, 212);
  border-radius: 45px;
  display: grid;
  border: none;

  /* hide toggle until we're sure user has JS enabled */
  visibility: hidden;
}

.dark-mode-toggle:hover {
    background-color: rgb(183, 183, 183);
  }
  
.img-thumbnail {
  padding:.25rem;
  background-color:#fff;
  border:1px solid #dee2e6;
  border-radius:.25rem;
  max-width:100%;
  height:auto;
}

/* theme-specific rules -- you probably only want color-related stuff here */
/* SCSS makes this a whole lot easier by allowing nesting, but is not required */
body.light {
  background-color: #fbfbfb;
  color: #222;
}
body.light a {
  color: #06f;
}
body.dark {
  background-color: #222;
  /* transition: all .65s ease-in-out; */
  color: #fbfbfb;
}
body.dark a {
  color: #fe0;
}
span {
  animation: blinker 1s linear infinite;
}
.mono {
    font-family: monospace;
    text-align: center;
    margin-inline: 110px;
    padding: 100px;
  }


  @media (max-width: 991px) {
    .mono {
      font-family: monospace;
    text-align: center;
    margin-inline: 50px;
    padding: 0px;
    }
  }

#my-button{
    border-radius: 35px;
    padding: 10px;
    border: none;
    cursor: pointer;
    background-color: rgb(215, 215, 215);
}

#my-button:hover {
    background-color: rgb(183, 183, 183);
  }

  #my-button2{
    border-radius: 35px;
    padding: 10px;
    border: none;
    cursor: pointer;
    background-color: rgb(215, 215, 215);
}

#my-button2:hover {
    background-color: rgb(183, 183, 183);
  }
  

@keyframes blinker {
  50% {
    opacity: 0;
  }
}






/*////////////// old typing animation   ////////////////////////// */


.wrapper {
  height: 50vh;
  /*This part is important for centering*/
  display: grid;
  place-items: center;
}

.typing-demo {
  /* 
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid; */
  width: 65%;
  transition: all 0.65s ease-in-out;
  font-family: monospace;
  font-size: 1em;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

input[type="text"],
select {
  display: table; /* shrinks to fit content */
  margin: auto;
  width: 80%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 30px;
  box-sizing: border-box;
}

input[type="submit"] {
  width: 20%;
  background-color: #4caf50;
  color: white;
  padding: 14px 0px;
  margin: 8px 0;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* div {
              border-radius: 5px;
              background-color: #f2f2f2;
              padding: 20px;
              } */


 
              

