html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body{
  margin: 0;
}

a{
  text-decoration: none;
}

#main-container {
  display: flex;
  min-height: 100vh;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

#name-container {
  padding: 5px 20px;
  margin: auto;
  border-radius: 10px;
}

#name {
  font-size: calc(1em + 3vw);
  margin: 0;
}

#name:hover{
  cursor: pointer;
}

#name :nth-child(1), .controls-generate:hover{
  color: rgb(40, 153, 153);
}

#name :nth-child(2), .controls-copy:hover{
  color: rgb(235, 53, 92);
}

.controls{
  display: flex;
  padding: 25px 20px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.controls i{
  color: #AAA;
  font-size: calc(2em + 0.5vw);
  margin: 10px 15px;
  transition: color 0.1s ease-in-out;
}

.controls i:hover{
  cursor: pointer;
}

footer{
  position: fixed;
  left: 0;
  bottom: 5vh;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: calc(1em + 0.5vw);
  color: #696969;
  font-weight: 600;
}

.footer-title {
  margin-bottom: 5px;
  transition: color 0.1s ease-in-out;
}

.footer-title:hover {
  color: #454545;
}

/* Disable anchor tag coloring */
a, a:visited, a:hover, a:active {
  color: inherit;
}
