body {
  transition-duration: 0.4s;
  background-color: white;
  cursor: default;
}
h1 {
  font-family: "Cinzel Decorative";
  text-align: center;
}
h3 {
  font-family: "DotGothic16";
}
p {
  font-family: "Nova Square";
}
h2 {
	font-family: "Nova Square"
}
div {
	font-family: "Nova Square"
}
a {
  font-family: "Fauna One";
}
button {
  color: blue;
  display: inline-block;
  padding: 5px 5px;
  border-radius: 10px;
  transition-duration: 0.4s;
  border: 2px solid blue;
	font-size: 25px;
	text-align: center;
  position: relative;
  background-color: transparent;
}
button:hover {
  background-color: blue;
  color: white;
  cursor: pointer;
}
.x-button {
  height: 30px;
  width: 30px;
  color: red;
  position: absolute;
  right: 10px;
  top: 10px;
}
.x-button:hover {
  color: crimson;
}
.cinzel {
  font-family: "Cinzel Decorative";
  position: relative;
}
.container {
	display: grid;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
.red {
  color: white;
  background-color: red;
  transition-duration: 0.4s;
  width: 100%;
  font-family: "Audiowide";
  font-size: 30px;
  border: transparent;
  border-radius: 50px;
}
.red:hover {
  color: white;
  background-color: #ff6666;
}
.buy {
  color: white;
  background-color: mediumseagreen;
  border-radius: 10px;
  border: 0px;
  height: 50px;
  width: 100px;
  transition-duration: 0.4s;
}
.buy:hover {
  background-color: forestgreen;
}
.settings-menu {
  display: none;
  background-color: white;
  border-radius: 12px;
  z-index: 2;
  padding: 16px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 12px black;
}
.dark-mode {
  background-color: black;
  color: white;
}
.dark-settings {
  color: white;
  background-color: black;
  box-shadow: 10px 10px 12px black;
  transition-duration: 0.4s;
}
.topnav {
  overflow: hidden;
  background-color: #333333;
  border-radius: 10px;
}

.topnav a {
  float: left;
  color: #2684FC;
  background-color: transparent;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 10px;
}

.topnav a:hover {
  background-color: transparent;
  color: #2684FC;
  border: 2px solid #2684FC;
  cursor: pointer;
}

.topnav a.active {
  background-color: #2684FC;
  color: white;
  border: 2px solid #2684FC;
}
.topnav .right {
  float: right;
}
.topnav .login {
  float: right;
  color: gold;
  background-color: transparent;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
  font-size: 17px;
  border-radius: 10px;
  border: 2px solid gold;
  transition-duration: 0.4s;
  margin-top: 8px;
  margin-right: 8px;
}
.topnav .login:hover {
  background-color: gold;
  color: #333333;
  border-color: transparent;
}
.topnav .settings {
  color: white;
  background-color: transparent;
  text-align: center;
  font-size: 24px;
  border-radius: 50%;
  transition-duration: 0.4s;
  margin-right: 10px;
  border: 2px solid white;
  padding: 5px 5px;
  margin-top: 4px;
  margin-left: 10px;
}
.topnav .settings:hover {
  color: white;
  border-radius: 10px;
  border: 2px solid white;
}
.content {
  padding: 16px;
}
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}
.sticky + .content {
  padding-top: 60px;
}
input[type=text], input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}
.login_button {
  width: auto;
  border: transparent;
  color: white;
  background-color: green;
}
.login_button:hover {
  background-color: greenyellow;
}
.cancelbtn {
  width: auto;
  background-color: #f44336;
  color: white;
  border: transparent;
}
.cancelbtn:hover {
  background-color: tomato;
}
span.passw {
  float: right;
  padding-top: 16px;
}
.login-style {
  display: none;
  background-color: white;
  position: fixed;
  z-index: 2;
  top: 0;
  border-radius: 12px;
  padding: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 10px 10px 12px black;
}
.dark-login {
  color: white;
  background-color: black;
  box-shadow: 10px 10px 12px black;
  transition-duration: 0.4s;
}
.close {
  color: red;
  height: 25px;
  width: auto;
  float: right;
  position: absolute;
  right: 10px;
  top: 10px;
}

.close:hover {
  color: crimson;
}
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
}
#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0,0,0,0.5)
}
.signup {
  float: right;
  color: #C26401;
  border: 2px solid #C26401;
  background-color: transparent;
}
.signup:hover {
  color: white;
  background-color: #C26401;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 12px;
  box-shadow: inset 0 0 2px black;
}
::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 12px;
}
::-webkit-scrollbar-thumb:hover {
  background: black;
}
.save {
  color: orange;
  border: 2px solid orange;
}
.save:hover {
  background-color: orange;
}
#savechanges {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
}
#savechanges.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
/* Add these styles at the end of your CSS */
.confirmation-popup {
    display: none;
    position: fixed;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fefefe;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 10px 10px 12px black;
}

.popup-content {
    text-align: center;
}

.close-popup {
    color: red;
    float: right;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.close-popup:hover {
    color: crimson;
}

.confirmation-popup p {
    margin-bottom: 20px;
}
.limp {
  font-size: 15px;
}