* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
}

html {
  font-size: 14px;
}

body {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  text-align: center;
  background-color: red;
}

h1 {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 36px;
  color: black;
}

h1 span {
  display: block;
}

h2 {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 36px;
  color: black;
}

.trick-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.trick-wrapper-about {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: -150px;
}

.title {}

.black-circle {
  width: 20px;
  /* size of the circle */
  height: 20px;
  background-color: black;
  /* circle color */
  border-radius: 50%;
  /* makes it round */
  margin: 0 auto;
  /* centers horizontally */
  display: block;
  flex-shrink: 0;
}

.info {}

.description-container {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 24px;
  width: 80%;
}

.description {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
  font-size: 24px;
  width: 100%;
}

img {
  object-fit: contain;
  width: 18vw;
  /* or any size you prefer */
  height: auto;
  /* maintains aspect ratio */
  max-height: 30vh;
}

.image-wrapper {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.list {
  font-family: 'Times New Roman', Times, serif;
  font-weight: ;
  font-style: ;
  font-size: 24px;
  width: 80%;
  /* margin-top: 15%;
  margin: 15% auto; */
  text-decoration: none;
  cursor: pointer;

}

.list:hover {
  font-style: italic;
}

.nav {
  position: fixed;
  /* stays in place when scrolling */
  top: 10px;
  /* distance from top */
  left: 10px;
  /* distance from left */
  display: flex;
  /* arrange links in a row */
  gap: 10px;
  /* space between links */
  z-index: 4;
  width: calc(100% - 20px);
}

.nav a {
  text-decoration: none;
  /* remove underline */
  color: black;
  transition: font-style 0.3s;
}

.nav a:hover {
  font-style: italic;
}

.about {
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-style: normal;
  font-size: 20px;

  width: 80%;
  margin: 0.5em auto; /* Adjusted this line */
  text-decoration: none;
}

.random-tip-button {
  cursor: pointer;
}

.bottom-right-gif {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

/* styles added by haron */

#tip-house {
   width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.wrapper-about {
  justify-content: flex-start !important;
  

  height: auto !important;
  padding-bottom: 20vh;
  padding-top: 20vh;
}
.padding-top {
  padding-top: 20vh;
}
.padding-bottom {
  padding-bottom: 20vh;
}
.absoluted {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.background {
  background-color: red;
}

.margin-bottom {
  margin-bottom: 40px;
}

#list-wrapper {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 3rem 0rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hidden {
  display: none;
}

.fslightbox-toolbar > *:first-child {
    display: none !important;
}

.fslightbox-slide-number-container {
    display: none !important;
}

.fslightbox-slide-btn {
    background: none !important;
}

.fslightbox-toolbar {
    background: none !important;
}

.spacer {
    width: 20%;
    flex-grow: 1;
}