body {
    background-color: #171615;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

body>div:first-child {
    flex-grow: 1;
}

#logo_mcfirsting {
    padding: 10%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    font-family: "MinecraftTen";
    justify-content: space-between;
    background-image: linear-gradient(to bottom, rgb(255, 106, 0), rgb(255, 149, 0));
    padding: 3px 3px;
    z-index: 1000;
    filter: drop-shadow(0px 3px 4px #000000);
}

.logo img {
    height: 45px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.nav-links li {
    margin: -5px;
}

.nav-links a {
    padding: 10px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 65px;
    transition: color 0.3s;
}

.nav-links a:hover {
    padding: 10px;
    color: #ffffff;
    transition: 0.3s;
}

.content {
    margin-top: 70px;
}

section {
    padding: 100px 20px;
    border-bottom: 2px solid #ccc;
}

.page {
    font-family: "MinecraftTen";
    color: #ffffff;
    font-size: 25px;
}

p {
    color: #ffff;
    font-size: 20px;
    margin-left: 10%;
    margin-right: 10%;
    text-align: left;
}

.project {
    color: #ffffff;
    font-family: "MinecraftTen";
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #262423;
    color: #ffffff;
    padding: 2px;
}

footer h2 {
    text-align: center;
    margin-bottom: 20px;
}

.social-icons {
    display: inline-flex;
    filter: drop-shadow(0px 3px 4px #000000);
    justify-content: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin: 3px;
    align-items: center;
    background-color: #1f1e1d;
}

.box {
    background: #474747;
    padding-bottom: 15%;
}

@font-face {
    font-family: "MinecraftTen";
    src: url("fonts/MinecraftTen-VGORe.ttf");
}


.tabs-container {
    margin-left: 10%;
    max-width: 400px;
    background-color: #252525;
    border-radius: 8px;
    overflow: hidden;
}

.tab-links {
    display: flex;
    background-color: #1e1e1e;
    border-bottom: 2px solid #4a4a4a;
}

.tab-link {
    padding: 12px 20px;
    cursor: pointer;
    background: none;
    border: none;
    color: #9e9e9e;
    font-family: "MinecraftTen";
    font-size: 1em;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tab-link.active {
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
}

.tab-link:hover {
    color: #ffffff;
}

.tab-content {
    display: none;
    padding: 25px;
    line-height: 1.6;
}

.tab-content.active {
    display: block;
    color: #ffffff;
}

.tab-content ol {
    padding-left: 20px;
}

.tab-content ol li {
    margin-bottom: 15px;
}

.tab-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.tab-content ul li {
    margin-bottom: 10px;
}


.code-container {
    position: relative;
    background-color: #1e1e1e;
    border-radius: 5px;
    padding: 10px;
    padding-right: 80px;
}

.code-container pre {
    color: #f0f0f0;
    margin: 5%;
    overflow-x: auto;
    white-space: pre;
}

.copy-btn {
    position: relative;
    top: 10px;
    right: 10px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-family: "MinecraftTen";
    font-size: 0.9em;
}

.copy-btn:hover {
    background-color: #c8c8c8;
}