/* Default Sytlesheet */

/* Default Element CSS */
body {
    font-family: "Oswald";
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #0c0c0c;
}

a {
    text-decoration: none;
    color: #fff;
}

a:hover, a:active {
    color: gold;
}

b {
    color: lightblue;
}

b:hover {
    font-style: italic;
}

h1,h2,h3,h4 {
    color: lightblue;
}

h5,h6 {
    color: white;
}

hr {
    border: 3px solid #990000;
}

ol {
    color: #666;
}

li {
    color: #fff;
}

pre {
    color: lime;
}

p {
    color: gold;
}


/* Set Background For Desktop CSS */
/* Desktop background image (landscape mode only) */
.desktop-background {
  background-image: url('../images/bot-bots-botnet-botnets.jpg');
  background-size: cover;  /* Ensures the image covers the entire screen */
  background-position: center;  /* Centers the image */
  background-repeat: no-repeat;  /* Prevents the image from repeating */
  height: 100vh;  /* Fills the viewport height */
  width: 100%;
}

/* Apply background image only for landscape mode and screens wider than 1024px */
@media only screen and (min-width: 800px) and (orientation: landscape) {
  body {
    background-image: url('../images/bot-bots-botnet-botnets.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Hide the background image in portrait mode or on smaller devices */
@media only screen and (max-width: 800px), (orientation: portrait) {
  body {
    background-image: none; /* No background image for portrait or small screens */
  }
}

/* Default Information Display CSS */
.info {
    margin-top: 0px;
    display: block;
    max-width: 400px; /* Max width for larger screens */
    width: 100%; /* Ensures it takes the full width if needed */
    text-shadow: 0px 0px 2px #000;
    padding: 10px;
    box-shadow: 2px 2px 2px #333;
}

/* Adjust for portrait mode on desktop */
@media only screen and (orientation: portrait) and (min-width: 1024px) {
    .info {
        max-width: 90vw; /* Make it responsive in portrait mode */
        width: 90vw; /* Fill 90% of the viewport width */
    }
}

.info li {
border: 1px solid transparent;
    color: #fff;
    box-shadow: 0px 0px 2px #000;
    text-shadow: 0px 0px 2px #000;
    padding: 5px;
}

.info li:hover {
border: 1px solid gold;
    color: gold;
    font-style: italic;
    background-color: #0c0c0c;
    box-shadow: 2px 2px 8px #000;
}

/* Basic Content Block Template CSS */
.content_block {
    margin-left: 20px;
    display: block;
}

.info_block {
    text-align: center;
}

/* Bot Listing */
.bot_list li {
    padding: 5px;
}

/* Page Footer CSS */
.footer {
    margin: auto;
    text-align: center;
}

/* Dingo Chat Window Demo CSS*/

.dingo {
    display: flex;
    justify-content: center;
}

/* All Your Base CSS */
#based {
    text-align: center;
}

/* Pixie Footer Image */
#pixie {
    opacity: 0.7;
}

#pixie:hover {
    opacity: 1.0;
}
