body {
  
  margin: 0;
  padding-top: calc(60px + 40px + env(safe-area-inset-top));
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  font-family: "MedievalSharp", sans-serif;
}
h1{
  
  text-align: center;
  font-size: 64px;
  margin: 0;
  padding-top: 10px;
}

html, body {

  overflow-x: hidden;
}

html {

  -webkit-text-size-adjust: 100%;
}
@keyframes BtnIntro {

  from {

    background-color: black;
  } to {

    background-color: #895129;
  }
}
@keyframes TextGrow {
  from {
    transform: scale(0.1);
  }
  to {
    transform: scale(1);
  }
}



.hole {
  
  height: 250px;
  width: 250px;
  background-color: #895129;
  border: 20px solid black;
  border-radius: 50%;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

*::selection {
  
  background-color: green;
  color: #895129;
  
}
.top-btn {
  appearance: none;
  -webkit-appearance: none;
  
  text-decoration: none;

  min-width: 120px;
  min-height: 120px;
  padding: 0;

  border-radius: 50%;           /* ALWAYS a circle */
  border: 8px solid black;
  background-color: #895129;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  color: white;
  font-family: "Londrina Solid";

  flex-shrink: 0;
  transition: background-color 0.2s ease;
  
  animation: BtnIntro 2s;
}

.btn-text {
  animation: TextGrow 2s ease-out forwards;
  user-select: none;
}
.top-btn:hover {
  background-color: black;
  color: white;
}



#top-btn-container {

  position: relative;
  box-sizing: border-box;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  pointer-events: auto;
  overflow-x: auto;
  flex-wrap: nowrap;
  scrollbar-width: none;
}



nav {
 
  position: relative;
  min-height: 250px;
  height: auto;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#top-btn-container::-webkit-scrollbar {
display: none;

}

.hole-container {

  position: relative;
  height: auto;
  text-align: center; 
  background-color: green;
}

p:last-of-type {

  margin-bottom: 0;
}

.top-btn:visited {

  color: white;
  text-decoration: none;
}

.top-btn:hover,
.top-btn:active {
  text-decoration: none;
  color: white;
}


.top-btn:focus-visible {

  outline: 4px solid black;
  outline-offset: 10px;
  box-shadow: 0 0 0 6px green;
}

@media (hover: none) {

  .top-btn:hover {

    background-color: #895129;
  }
}

@media (max-width: 600px) {

  .top-btn {

    width: 90px;
    height: 90px;
    border-width: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {

  * {

    animation: none !important;
  }
}

@media (prefers-color-scheme: dark) {

  body {

    background-color: black;
    color: white;
  }
}

nav {

  padding-top: env(safe-area-inset-top);
}


.hole-container {

  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.top-btn,
.top-btn * {
  cursor: pointer !important;
}



@media (max-width: 1024px) {

  .titletext {

    font-size: 2.5rem;
    text-align: center;
  }
}

.top-btn:active {

  background-color: #895129;
}

.top-btn {

  touch-action: manipulation;
}