* {
    margin: 0;
    padding: 0;
    font-family: monospace;
}

body {
    background-color: #1f2427;
    background-image: url('img/skullbg.png');
    background-repeat: repeat;
    image-rendering: pixelated;
}



.header {
    border: 3px solid #f36421;
    background-color: #1f2427;
    height: 128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo {
    width: 128px;
    height: 128px;
}

.header h1 {
    color: rgb(219, 109, 20);
    text-align: center;
}

.main {
    display: flex;
    justify-content: space-between;
}

.sidebar {
    padding-top: 40px;
    width: 226px;
    background-color: #1f242780;
    padding-left: 20px;
    padding-right: 20px;
}

.sidebar h1, .sidebar h2, .sidebar h3 {
    color: rgb(218, 109, 20);
    text-align: center;
    margin-bottom: 15px;
}

.sidebar h1 {
    font-size: 35px;
}

.sidebar h2 {
    font-size: 30px;
}

.sidebar h3 {
    text-align: left;
    margin-left: 20px;
    font-size: 20px;
}

.nav-links {
    color: rgb(218, 109, 20);
    margin-left: 40px;
    margin-bottom: 15px;
}

.sidebar h3.divider {
    font-size: 14px;
}

.nav-links li {
    list-style: square;
    margin-bottom: 10px;
    font-size: larger;
}

.bunkerLi {
    color: rgb(218, 109, 20);
    list-style: none;
    margin-bottom: 10px;
    font-size: xx-large;
}

.bunkerLi a {
    font-size: 25px;
}

.bunkerContent {
	width: 750px;
	background-color: #1f2427cc;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	margin-top: 50px;

}

.bunkerContent h1 {
    font-size: xxx-large;
    color: rgb(218, 109, 20);
    margin-top: 20px;
    margin-bottom: 20px;

}

.bunkerContent h2 {
    font-size: x-large;
    color: rgb(218, 109, 20);
    margin-top: 10px;
    margin-bottom: 5px;
    margin-left: 30px;
    margin-right: 30px;
    text-align: left;
}

.bunkerContent p {
    font-size: large;
    color: rgb(218,109,20);
    text-align: left;
    margin-left: 30px;
    margin-right: 30px;
}


.bunkerContent img {
    display: block;
    margin-left: 60px;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 50px;
    
}

#bunkerTitleImg {
    padding: 0px;
}


.bunkerContent div.backButton {
    float: left;    
    border: 2px solid #f36421;
    background-color: #1f2427;
    padding: 10px;
    #padding-left 10px;
    #padding-right: 10px;
}

.backButton a {
    #color: inherit;
    color: rgb(218, 109, 20);
    #text-decoration: none;

}

.link {
    color: inherit;
    #text-decoration: none;
    font-size: 17px;
}

.library, .terminal {
    border: 3px solid #f36421;
    width: 200px;
    margin: 30px auto;
    padding: 10px;
    text-align: center;
}

.library img, .terminal img {
    width: 200px;
    height: 112px;
}

.content {
    width: 100%;
    text-align: center;
}

.content h1 {
    color: rgb(218, 109, 20);
    margin-top: 40px;
}

.content pre {
    color: rgb(218, 109, 20);
    margin-top: 30px;
}

.webbuttons {
    margin-left: auto;
    margin-right: auto;
    width: 683px;
    margin-top: 20px;
}




.media {
    width: 683px;
    margin: auto;
    border: 3px solid #f36421;
    background-color: #1f2427;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 683px 1fr;
    margin-top: 50px
}



.me {
    width: 547px;
    height: 547px;
    margin: 50px auto;
    border: 3px solid #f36421;
    background-color: #1f2427;
}

.media img {
    width: 100%;
}

.me img {
    width: 100%;
}

.gallery {
    display: grid;
    gap: 10px;
    padding: 10px;
    background-color: #1f2427; /* Match your theme */
}

.gallery img {
    width: 100%;
    height: auto;
    border: 2px solid #f36421;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.gallery img:hover {
    transform: scale(1.05); /* Subtle zoom effect on hover */
}


.recomendations {
    overflow: hidden;
}

.recomendationbox {
    overflow: hidden;
    display: inline-grid;
}


@media screen and (max-width: 1200px) {
    .recomendationbox {
        display: none;
    }
}

baranimation::before {
    content: "|  >))'>          |";
    animation: animate infinite 3s;
    white-space: pre;
}
@keyframes animate {
    0% {
        content: "|  >))'>          |";
      }
    15% {
        content: "|      >))'>      |";
      }
    30% {
        content: "|          >))'>  |";
      }
    45% {
        content: "|          <'((<  |";
      }
    60% {
        content: "|      <'((<      |";
		}
    85% {
        content: "|  <'((<          |";
		}
}


