h3{color: beige;}
p{color: beige;}
li{color: beige;}
b{color: beige;}

h5{color: beige;}
h4{color: beige;}
h2{color: beige;}
h1{color: beige;}
p{color: beige;}
table{color: beige;}


/* Basic styles for the button */
.image-button {
    display: inline-block;
    border: 4% solid #ccc;
    padding: 5%;
    text-decoration: none;
}

/* Hover effect */
.image-button:hover {
  background-color: #f2f2f2;
}

/* Remove default image border */
.image-button img {
  border: none;
}

body {
  margin: 0;
  padding: 0%;
  font-family: Arial, sans-serif;
  background-color: rgb(68, 70, 70);
}

.brand-icon {
  float: left;
  margin-right: 20%; /* Adjust margin as needed */
  /* Add any other styling for your brand icon */
}

nav {
  background-color: #333;
  color: beige;
  text-align: center;
  padding: 2%;
  position:fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: top 0.3s; 
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}

a {
  text-decoration: none;
  color: beige;
  font-weight: bold;
  font-size: 18px;
  display: block;
  padding: 10px;
}

.devil-button {
  background: linear-gradient(145deg, #850202, #3f0606, #1b0101, #7a2c2c, #fc5151);
  background-size: 400% 400%;
  border: 2px solid #252222;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  animation: gradient-animation 5s ease infinite;
}

.devil-button:hover{
  background-position: right center;
  box-shadow: 0 10px 30px rgba(255, 181, 181, 0.719);
}

.gold-button {
  background: linear-gradient(145deg, #ffdf00, #ffd700, #ffc700, #ffb700, #ffab00);
  background-size: 400% 400%;
  border: 2px solid #e0a800;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 30px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  animation: gradient-animation 5s ease infinite;
}

.gold-button:hover {
  background-position: right center;
  box-shadow: 0 6px 20px rgb(255, 227, 150);
}

@keyframes gradient-animation {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Dropdown styles */
.dropdown-content{
  display: none;
  position: absolute;
  background-color: #333;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.dropdown:hover .dropdown-content,
.dropdown.active .dropdown-content {
  display: block;
  opacity: 1;
}

.dropdown-content a{
  display: block;
  padding: 10px;
  color: white;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.dropdown-content a:hover {
  background-color: #555;
}

#content{
    padding: 5%;
    padding-top: 10%;
}

#hash{
    display: flex;
    justify-content: space-between;
}

#right_side, #left_side{
    width: 50%; /* Adjust as needed */
    box-sizing: border-box;
    padding: 2%;
}

img[src$=".jpg"],
      img[src$=".jpeg"],
      img[src$=".png"] {
        border: 3px solid #333; /* Border width, style, and color */
}

/* Style for the container */
.scroll-container {
  width: 90%;
  height: 50%;
  overflow: auto; /* Enable scrolling */
  border: 3px solid #000000;
  background-color: #252525;
}

/* Optional: Style for the content inside the container */
.scroll_content {
  color: rgb(157, 235, 84);
  padding: 5%;
  white-space: pre; /* Preserve whitespace */
}

/* Style for the container */
.scroll-container2 {
  width: 99%;
  height: 40%;
  overflow: auto;
  border: 3px solid #000000;
  background-color: #252525;
}

/* Optional: Style for the content inside the container */
.scroll_content2 {
  color: rgb(157, 235, 84);
  padding: 1%;
  white-space: pre; /* Preserve whitespace */
}

/* Style for the button */
.button1 {
  padding: 10px 20px;
  background-color: #265252;
  color: white;
  border-width: 3px;
  border-color: #333;
  border-radius: 4px;
  cursor:pointer;
}
/* Style for the button */
.button2 {
  padding: 10px 20px;
  background-color: #265252;
  color: white;
  border-width: 3px;
  border-color: #333;
  border-radius: 4px;
  cursor:pointer;
}
/* Style for the button */
.button3 {
  padding: 10px 20px;
  background-color: #265252;
  color: white;
  border-width: 3px;
  border-color: #333;
  border-radius: 4px;
  cursor:pointer;
}

/* Media query for screens with a maximum width of 700 pixels (typical mobile screens) */
@media (max-width: 700px) {
  /* Styles for screens with a width of 600 pixels or less */
  #right_side, #left_side {
       width: 100%;
  }
  #hash {
    display: inline;
  }
  #content{
    padding: 10%;
    padding-top: 20%;
  }

  /* Style for the container */
  .scroll-container2 {
    width: 100%;
    height: 40%;
    overflow: auto;
    border: 3px solid #000000;
    background-color: #252525;
  }

  /* Optional: Style for the content inside the container */
  .scroll_content2 {
    color: rgb(157, 235, 84);
    padding: 3%;
    white-space: pre; /* Preserve whitespace */
    font-size: 50%;
  }
}