body{        
    font-family: 'PixelOperator';;
    font-size:20px;
    background-image: url("bg0.png");
  background-repeat: repeat;
}


  @font-face {
    font-family: 'PixelOperator';
    src: url(fonts/PixelOperator.ttf) format('truetype');
}
 p {
     font-family: 'PixelOperator';; 
}

#content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
  }

#content-wrapper-2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    transform: translateX(-65px)
  }
  
#container {
 width: 100%;
 margin: 0 auto;
    text-align:center; 
    overflow: visible;
 }

#main {
    text-align: justify;
    border: 3px double #960000;
    padding: 10px;
    background: #ffffff;
    max-width: 600px;   
    min-width: 600px;  
     box-shadow: 0 8px 8px 0 rgba(51, 0, 0, 0.3)
}

hr {
    border:0;
    height:1px;
    background-image:linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

@keyframes wiggle{
    from{
    transform:scale(0.98)
    }
    50%{
    transform:scale(1)
    }
    to{
    transform:scale(0.98)
    }

}
          
#header {
    font-size: 60px;
    line-height: 0.05;
    padding-top: 2px;
    color:white;
    text-decoration: none; 
    transition: 0.4s; 
}
 
#header:hover {
    letter-spacing:5px;
}


a{
    color:#ffffff;
}

a:hover{
    color:#960000;
}

#sidebar-column {
  position: sticky;
    top: 20px;
    width: 220px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.sidebar {
  position: sticky;
    top: 20px;
    border: 1.5px solid #960000;
    background: white;
    color: black;
    padding: 10px;
    font-size: 20px;
        box-shadow: 0 8px 8px 0 rgba(51, 0, 0, 0.3)
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
  
}

.sidebar li {
    margin-bottom: 8px;
}

.sidebar-links {
   position: sticky;
    top: 20px;
    border: 1.5px solid #960000;
    background: #000000;
    color: white;
    padding: 10px;
    text-transform: uppercase;
    font-size: 20px;
   
box-shadow: 0 8px 8px 0 rgba(51, 0, 0, 0.3)

}

.sidebar-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.centered {
    text-align: center;
}

#links{
    border:1.5px solid #960000; 
    text-align:center;
    font-size:12px;
    letter-spacing:0.5px;
    padding:5px;
    width:200px;
    margin:0 auto;
    background: #000000;
    box-shadow: 0 8px 8px 0 rgba(51, 0, 0, 0.3)
}
    
#links ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navigation {
    position: sticky;
    top: 20px;
    width: 220px;
    flex-shrink: 0;
    
}

#main img {
    transition: transform 0.2s ease;
    display: inline-block;
}

#main img:hover {
    transform: scale(1.5);
}

#main {
    overflow: visible;
}

#preview-column {
    position: sticky;
    top: 20px;
    width: 350px;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

#deck-preview {
    width: 330px;
    border: 2px solid #960000;
    background: white;
    color: black;
    padding: 10px;
    font-size: 20px;
    position: sticky;
    top: 20px;
    box-shadow: 0 8px 8px 0 rgba(51, 0, 0, 0.3)
}


.deck-thumb {
    cursor: pointer;
    transition: transform 0.2s;
}

.deck-thumb:hover {
    transform: scale(1.1);
}

#deck-preview img:hover {
    transform: scale(1.5);
     cursor: pointer;
    transition: transform 0.2s;
}


