@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap');

btn:focus {
  outline: none;
  box-shadow: 0 0 4px rgba(0,0,0,0.5), 0 0 0 5px rgba(79,161,167,0.3);
}
.blockscreen {
  pointer-events: none;
}
.blockscreen btn {
  right: 50%;
  bottom: 50%;
  width: 142vmax;
  height: 142vmax;
  margin: -71vmax;
  background-size: 90px;
  background-position: 50% 50%;
  background-color: transparent;
  box-shadow: none;
  pointer-events: none;
  transition: all .5s;
}

btn:active {
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    transform: translateZ(0px) scale(0.9);
}

btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 4px;
    background-image: url("https://awashcard0.pages.dev/home-thing/dark.svg");
}

btn, .blockscreen btn:hover {
    background-image: url("https://awashcard0.pages.dev/home-thing/light.svg");
}

btn {
    display: block;
    position: fixed;
    z-index: 1000;
    height: 50px;
    width: 50px;
    background-color: rgba(0, 0, 0, 0.4);
    background-size: 45px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    right: 10px;
    bottom: 10px;
    transform: translateZ(0px);
    border-radius: 50%;
    background-repeat: no-repeat;
    background-position: 50% 80%;
    transition: all 0.2s ease 0s;
}

#userThing {
    display: block;
    position: fixed;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.4);
    background-size: 45px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 2px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    right: 85px;
    bottom: 25px;
    transform: translateZ(0px);
    background-repeat: no-repeat;
    background-position: 50% 80%;
    transition: all 0.2s ease 0s;
    color: white;
}

.callout {
  position: fixed;
  bottom: 35px;
  right: 20px;
  margin-left: 20px;
  max-width: 300px;
}

.callout-title {
  padding: 25px 15px;
  background: #555;
  font-size: 30px;
  color: white;
}

.callout-main {
  padding: 15px;
  background-color: #ccc;
  color: black
}

.callout-closebtn {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

.callout-closebtn:hover {
  color: lightgrey;
}

.settings-background {
  z-index: 9998;
  font-family: 'Ubuntu', sans-serif;
    color: white;
    align-items: center;
    background: rgba(0,0,0,0.6);
    box-shadow: rgb(0 0 0 / 37%) 0px 3.2px 7.2px 0px, rgb(0 0 0 / 35%) 0px 0.6px 1.8px 0px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 75%;
    height: 75%;
    position: fixed;
    top: 15%;
    left: 15%;
}

.settings-background .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  font-size: 50px;
  cursor: pointer;
}

.homeLink {
display: inline-block;
margin-top: 10px;
background-color: #2196F3;
color: #fff;
padding: 8px 16px;
text-decoration: none;
border-radius: 4px;
}

.full-page-dark-mode {
  background-color: black;
  color: white;
}

.exitBackground {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  
  opacity: 0;
  transition: opacity 1s ease-in-out;
  transition: background-color 1s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  }

.exitBackground.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  }
  
  .exitNameElement {
    font-family: 'Ubuntu', sans-serif;
  font-size: 60px;
  color: #fff;
  animation: exitMoveName 1s ease-in-out forwards;
  opacity: 0;
  position: absolute;
  top: 25px;
  left: 20px;
  }
  
  @keyframes exitMoveName {
  0%{
    opacity: 1;
    top: 25px;
    left: 20px;
    font-size: 30px;
  }
  100% {
    opacity: 0;
    top: 50%;
    left: 50%;
    font-size: 60px;
  }
  }