/* (C) 2084 LenCo. All rights reserved. */

body {
	background: linear-gradient(61deg,#612424,#840000,#632d07,#dda169);
        min-height: 50vh;
        align-items: center;
        text-align: center;
        justify-content: center;
	height: 100vh;
	background-size: 850% 850%;
	animation: gradient 15s ease infinite;
}

.center {
    text-align: center;
}
  
.center2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@font-face {
    font-family: "Neue-Machina";
    src: url("./resources/fonts/neue-machina.ttf");
}

@font-face {
    font-family: "DMSerifDisplay";
    src: url("./resources/fonts/DMSerifDisplay-Regular.ttf");
}

h1, h2, h3, h4, h5, h6, p {
font-family: "DMSerifDisplay";
color: white;
}

.blktxt {
  color: #000000;
}

.mach {
font-family: "Neue-Machina";
color: white;
}

.star {
  font-size: 10vh;
  color: white;
  cursor: pointer;
}

.star2 {
  font-size: 10vh;
  color: white;
}

.review {
  font-family: "Neue-Machina";
}
 
.one {
  color: rgb(255, 0, 0);
}
 
.two {
  color: rgb(255, 106, 0);
}
 
.three {
  color: rgb(242, 255, 0);
}
 
.four {
  color: rgb(140, 255, 0);
}
 
.five {
  color: rgb(0, 26, 255);
}

.menuy h1 {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

.menuy h2 {
  font-size: 30px;
}

.established {
  font-style: italic;
}

.menuy h1,
.menuy h2,
.menuy p {
  text-align: center;
}

.menu {
  width: 80%;
  background-color: burlywood;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  max-width: 500px;
}
.menuy img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
}
.menuy hr {
  height: 2px;
  background-color: brown;
  border-color: brown;
}

.bottom-line {
  margin-top: 25px;
}

.item p {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 18px;
}

.flavor,
.snack {
  text-align: left;
  width: 75%;
}

.price {
  text-align: right;
  width: 24%;
}

.hasGIfont {
  font-family: "GlacialIndifference";
}

.loginContent { 
  display: block; 
}
.signupContent { 
  display: none; 
}

.aniGradient {
  background: linear-gradient(-45deg, #000000, #a70505, #000000, #0a8cf6);
  background-size: 400% 400%;
	animation: gradient 15s ease infinite, fadeInAnimation ease 3s;
	height: 100%;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#test {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: rgba(129, 15, 15, 0.7);
  transition: background-color .1s;
}
#test:hover {
  background-color: transparent;
  cursor: pointer;
}
#test:hover:after {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgba(129, 15, 15, 0.9), rgba(129, 15, 15, 0.7), rgba(129, 15, 15, 0.9));
  background-size: 200% 200%;
  background-position: 0% 100%;
  animation-name: test_hover;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}
@keyframes test_hover {
  from {
    background-position: 0% 100%;
  }
  to {
    background-position: 100% 0%;
  }
}

.whttxt {
  color: white;
 }

 .unselectable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}