* {
margin:0;
padding:0;
box-sizing:border-box;
}
#page-content {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-in {
  opacity: 0;
  animation: fadeInAnimation 0.5s forwards;
}

@keyframes fadeInAnimation {
  from { opacity: 0; }
  to {opacity: 1;}
}

li{
    font-size: x-large;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    
}
body{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: medium;
    line-height: 1.6;
    background: linear-gradient(to bottom,#000000, #2f2f2f);
    min-height: 100vh;
    color: white;
    /* padding: 5%; */
}
.logo{
    height: 3em;
    width: auto;
    transition: height 0.3s ease;
    float: left;
    filter: none;
}
.navbar{
    font-family: 'Courier New', Courier, monospace;
    overflow: hidden;
    justify-self: center;
    top: 0;
    position: sticky;
}
table, th, td {
  border: 1px solid;
  width: 50%;
  color: black; 
}
p{
    font-family: 'Courier New', Courier, monospace;
    margin: inherit;
    padding: 2px 1rem;
    line-height: 1.9;
    color: #ffffff;
}
@media print {
  /* Page setup (Chrome respects this pretty well) */
  @page {
    size: A4;
    margin: 15mm;
  }

  /* Hide UI junk */
  #header,
  #footer,
  #nav,
  button,
  .stickheader {
    display: none !important;
  }

  /* Core print styling */
  body {
    color: #000;
    background: #fff;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12pt;
    line-height: 1.4;
  }
  p, li, h1, h2, h3, h4, h5, h6 {
    color: #000;
    background: #fff;
  }
  /* Prevent weird link styling */
  a,
  a:visited {
    color: #000;
    text-decoration: none;
  }

  /* Avoid elements splitting across pages */
  img,
  table,
  blockquote,
  pre {
    page-break-inside: avoid;
  }

  /* Better table printing */
  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    border: 1px solid #000;
    padding: 4px 6px;
  }
}
.collapsible {    
  cursor: pointer;
  padding-left: 30px;
  font-size: 1.8em;
  font-weight: bold;
  user-select: none;
}

.content {
  padding-left: 60px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  font-size: 1.1em;
}

.symbol {
    margin-left: 8px;
    font-weight: bold;
    font-size: 1.2em;
    user-select: none;
}
.content.show {
  content: "\2796";
  max-height: fit-content; /* big enough to show content */
  transition: 0.5s ease-in;
}
.portheroimages{
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 40px;
padding: 40px;
}

@media (max-width: 816px) 
{
    .portheroimages{
grid-template-columns: 1fr;
grid-template-rows: auto;
    }   
}
.homeheroimages{
display: grid;
grid-template-columns: 2fr 2fr;
grid-template-rows: 500px;
column-gap: 10px;
row-gap: 10px;
padding: 10px;
}
@media (max-width: 768px) {
    .homeheroimages{
grid-template-columns: 1fr;
grid-template-rows: auto;
    }
}

.gamesimagegrid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20em, 1fr));
    padding: 10px;
    column-gap: 25px;
    row-gap: 25px;
    align-content: center;
    align-items: center;
}

.herotext{
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    
    position: relative; 
    font-family: 'Courier New', Courier, monospace;
    top: -35%;
    color: white;
    font-size: 3rem;
    pointer-events: none;
}

.aboutmewalloftext{
	color: #ffffff;
	margin-block: 100px;
	padding: 0 16px 16px 16px;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: justify;
}
.blockskills{
    display: flex;
    justify-content: center;
    margin: 30px;
    gap: 100px;
}
.gamesimg{
    border-radius: 10px;
    object-fit: cover;
    padding: 2.5px;
    width: 100%;
}
.contactme
{
    justify-content: center;
}

.heroimg
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: saturate(0%);
}


.heroimg:hover{
    filter: saturate(100%);
}
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar a{
    float: left;
    display: block;
    color: black;
    margin: 0 10px;
    background-color: white;
    border-radius: 15px;
    text-align: center;
    padding: 0.8em 2em;
    text-decoration: solid;
    transition: background-color 0.3 ease-in-out;
}
.navbar a:hover{
    background-color: rgba(35, 254, 254, 0.64);
    border-radius: 15px;
    
}
.navbar a.active{
    background-color: steelblue;
    border-radius: 15px;
    color: white;
}
.button-awesome{
    padding: 10px 20px;
    background-color: #66a6ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight:  bold;
    cursor: pointer;
    transition: background-color 0.3 ease-in-out;
}
.button-awesome:hover{
    background-color: rgb(39, 239, 112);
}
.container {
  width: 12rem;
  margin: 0 auto;
  
  resize: horizontal;
  overflow: auto;
}
.inline-list{
    display: inline-block;
    padding: 0;
    height: 2em;
    text-align: center;
    list-style: circle;
}
.inline-list > li{
    display: inline;
}
.inline-list > li::after {
    content: "  = ";
    width: 2px;
    height: 1em;
    background: linear-gradient(90deg, transparent calc(50% - 0.03125em), currentColor 0, currentColor calc(50% + 0.03125em), transparent 0);
}
.stickheader{
    position: sticky;
    border: none;
    border-radius: 0px 0px 10px 10px;
    top: 0;
    padding: 10px 16px;
    background: deepskyblue;
    color: black;
    z-index: 1000;
}
.stickheader-cascade{
    position: sticky;
    border: none;
    top: 0;
    background: deepskyblue;
    color: black;
    border-radius: 0px 0px 10px 10px;
    background-color: rgb(37, 75, 108);
    margin: -10px 0px 0px 0px;
    z-index: 0;
}
.header{
position: static;
border: none;
top: 0;
padding: 10px 16px;
color: #f1f1f1;
background-color: black;

}
.collapsableheader{
    padding: 10px;
}
