html {
  scroll-padding-top: 100px;
}
body {
  font-family: "Almendra SC", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(.6rem, 3vw + 0.5rem, 1.25rem);
  /*background: #382a2a;*/
  background-image: url("/images/wall-bckgrnd2.jpg");
  background-size: cover;
  background-position: center;
  color: #800e13;
  margin: 0;
  padding: 20px;
  padding-top: 80px;
  scroll-padding-top: 80px;
}
header {
  text-align: center;
  /*background: #ddd2bd;*/
  padding: 2px 15px;
  border: 3px;
  border-color: #6f6f6f;
  border-radius: 8px;
  background-image: url("/images/map-bckgrnd.jpg");
  background-size: cover;
}
.page-section {
  display: none;
}
.page-section.active {
  display: block;
}

.homepage-nav button {
  padding: 10px 10px;
  max-height: 60px;
}
.homepage-nav
{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #382a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: .6rem;
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    flex-direction: column;
}
.dropdown-menu.show {
    display: flex;
    top: 100%;
    left: 0;
    flex-direction: column;
}
.ingame-nav{
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 80px;
  background: #382a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: .6rem;
}
#logo {
  width: auto;
  max-height: 40px;
  flex-shrink: 0;
  padding: 0;
}
.nav-left{
  display: flex;
  flex-direction: row;

  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.home-button-text{
 text-align: center;
 white-space: normal;
 word-wrap: break-word;
 line-height: 1;
 max-width: 60px;
 font-size: 1rem;
}
button {
  padding: 10px 5px;
  margin: 5px 5px;
  cursor: pointer;
  font-size: 1.05rem;
  font-family: "Almendra SC", serif;
  font-weight: 600;
  color: #800e13;
  background-color: #ddd2bd;
  border-color: #6f6f6f;
  border-radius: 8px;
 background-image: url("/images/map-bckgrnd.jpg");
  background-size: cover;
}
header h1 {
  font-size: 3rem;
}
header p {
  font-size: 1.25rem;
  font-weight: 600;
}
.account-buttons{
 display: flex;
 justify-content: center;
 gap: .5rem;
 margin: 1rem 0;
}
.account-buttons button{
  font-size: 2rem;  width: 100%;
}

.features{
  background: #ddd2bd;
  padding: 2px 15px;
  border: 3px;
  margin-top: 1rem;
  border-color: #6f6f6f;
  border-radius: 8px;
  text-align: center;
   background-image: url("/images/map-bckgrnd.jpg");
    background-size: cover;
}
.comparison {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch;

}

.profile-dropdown button {
    align-items: right;
}

.left-side {
  align-content: flex-start;
  align-self: flex-start;
  border-right: 2px solid #880707;
  padding-right: 2rem;
}
.right-side{
  align-content: flex-end;
  align-self: flex-end;
}
small{
  font-size: .7rem;
}
/*
this
is
a
comment
block
*/
#form {
    background-image: url("/images/map-bckgrnd.jpg");
    padding: 5px;
    border-radius: 10px;
    align-items: center;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20 ;
}
/*
.stat-bar
.stat-fill
.xp-fill
.energy-fill
.health-fill
*/

.progress-bar {
  width: 300px;
  height: 20px;
  background: #333;
  border: 1px solid black;
  margin-top: 10px;
}

#status {
  width: 200px;
  height: auto;
  margin: auto;
  padding: 10px;
  background: #555;
  border: 3px;
  border: #333;
  border-radius: 8px;
}

@media  (max-width: 700px) {
  body {
    font-size: clamp(.4rem, 3vw + 0.3rem, 1.25rem);
  }
  button{
    font-size: .9rem;
  }
  .homepage-nav button {
  padding: 10px 5px;
  max-height: 55px;
  }
  .homepage-nav{ display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: .4rem;
  }
.nav-left{
  gap: 0;
  padding: 5px;
}
.home-button-text{
  font-size: .9rem;
  max-width: 44px;
}
 #logo {
  width: auto;
  max-height: 35px;
  flex-shrink: 0;
  }

  .comparison {
    display: flex;
    flex-direction: column !important;
    gap: 1rem;
  }
  .desktop-only {
    display: none;
  }
  .comparison .left-side {
    border-right: none !important;
    border-bottom: 2px solid#880707;
    padding-bottom: 1rem;
    padding-right: 0% !important;
    margin-bottom: 1rem;
  }
}
