/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

::-webkit-scrollbar-thumb {
    background-color: rgb(31, 31, 31);
    /* outline: 1px solid rgb(26, 80, 59); */
}


body {
background-color:white;
font-family: Verdana;
background-image: url('Images/gildedguy-meditating.png'); /* Replace with your image path */
background-repeat: no-repeat; /* Prevents the image from repeating */
background-size: cover; /* Scales the image to cover the entire body */
color: #c8cfe3;
margin-top: 10px;
}

header {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow:hidden;
}

  #header-placeholder {
    min-height: 50px; /* or whatever your header height is */
}

  #top-header{
    text-align: center;
    height: 60px;
}


footer {
  background-image: url('Images/2152362.jpg'); 
  background-repeat: no-repeat; 
  background-size: cover; 
  background-position: center; 
  position: static; bottom: 0;
  text-align: center; 
  padding: 15px; display: block;
  border-style: inset;
  margin: 0;
  overflow-x: hidden;
}

.container{
  /* Set width of container to 1200 px and align center */
  margin: 0px auto;
  width:1200px;
  display: flex;
}


/***************************/
    /* Navigation Menu */
/***************************/

#menu {
  width: 100%;
  height: 25px;
  display: flex;
  justify-content: center;
}

#menu ul{
    display: flex;
    justify-content: center;
    background: #ffaa1d;
    padding: 0;
    margin: 0;
    list-style-type: none;
    width:100%;
}
    
#menu li{
    display: inline-block;
}
    
#menu li a, #menu li span{
    display: inline-block;
    padding: 0em 1.5em;
    text-decoration: none;
    line-height: 20px;
}
    
#menu li a{
        
    color: #FFF;
}
    
#menu li:hover a, #menu li span{
    background: #FFF;
    color: #0074D9;
    border-left: 1px solid #0074D9;
    text-decoration: none;
}

/* Webrings */


apartment-webring {
  position: static;
  justify-content:flex-start;
}


/* Dropdown */



.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute; 
  right: 0;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}

.Note1{
  color:yellow;
}


/* Games' CSS */

table {
  width: 100%;
  border: 1px solid black;
}

table, tr, td, th {
  border: 1px solid black;
}

/* Youtubers' CSS */


.MintCube {
  --s: 150px; /* control the size */
  display: grid;
  grid: auto-flow var(--s) / repeat(2,var(--s));
  gap: 10px;
  place-items: center;

}


.MintCube > img {
  width: 100%; 
  aspect-ratio: 1;
  object-fit: cover;
}



















