/* MAIN STYLES ON COMPUTER */

body{min-width: calc(var(--vw) * 100);
  min-height: calc(var(--vh) * 100);
  margin:0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  box-sizing: border-box;}

.gradient-text {background: linear-gradient(45deg, cyan, purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;}

.no-gradient {background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  color: black;}

.regular-button{color: white;
  min-width: 150px;
  height: auto;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  background: linear-gradient(45deg, cyan, purple);}

.regular-button:hover {color: white;
  min-width: 150px;
  height: auto;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  background: linear-gradient(45deg,rgba(0, 255, 255, 0.5),rgba(128, 0, 128, 0.5));}

.back-button{font-weight: bold;
  min-width: 150px;
  height: auto;
  padding: 5px 10px;
  border: none;
  border-radius: 10px;
  background-color: lightgrey;}
  

/* MAIN STYLES ON MOBILE */

@media (max-width: 600px) {

body {min-width: calc(var(--vw) * 100);
  min-height: calc(var(--vh) * 100);        
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;}


}