body {
    background-color: #111111;
    font-family: Arial, sans-serif; 
    margin: 0;
    padding: 0px;
}

header {
    background-color: #000000;
    border-bottom: 2px solid #ccc;
    font-family: 'Minecraftia', sans-serif; 
}

.logo {
    text-align: center;
}

.logo h1 {
    background-image: url(https://cookiecraftmods.com/images/banner.png);
    height: 165px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    color: #ffffff;
    text-shadow: 3px 2px 4px rgb(0, 0, 0); 
}

.logo p {
    margin: 5px 0 0;
    font-size: 1.2em;
    color: #666;
}

.logo span {
    color: #dfaf14;
}

.nav {
    overflow: hidden;
    background-color: #000;
  }
  
  .nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 10px;
    margin: 5px;
    transition: 0.2s;
  }
  
  .nav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .nav a.active {
    background-color: #e6b000;
    color: black;
  }

  main {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }

.left-content {
    color: #fff;
    background-color: #222;
    margin: 10px;
    padding: 5px;
    width: 60%;
    box-shadow: 2px 2px 4px #000000;
    border-radius: 10px;
}

.left-content .mod-nav {
    overflow: hidden;
    background-color: #333;
    width: fit-content;
    border-radius: 10px;
    margin: 10px;
}

.left-content .mod-nav a {
    float: left;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 10px;
    margin: 5px;
    transition: 0.2s;
}

.title {
    padding: 10px;
    font-size: 1.2em;
}

.left-content .description {
    margin: 10px;
}

.left-content .mod-nav a.active {
    background-color: #e6b000;
    color: black;
  }

.left-content .mod-nav a:hover {
    background-color: #ddd;
    color: black;
}

.left-content h1 {
    border-bottom: 2px solid #fff;
}

.left-content h4 {
    color: #ccc;
}

.left-content .description {
    border-radius: 10px;
    background-color: #333;
    margin: 10px;
}

.left-content .description p {
    color: #fff;
    margin: 10px;
}

.right-content {
    margin: 10px;
    background-color: #222;
    width: 20%;
    border-radius: 10px;
    box-shadow: 2px 2px 4px #000;
}

.inside-box {
    margin: 10px;
    padding: 10px;
}

.links {
    background-color: #333;
    border-radius: 10px;
    margin: 10px;
    color: #fff;
}

.link-list {
    text-align: left;
    display: grid;
}

.link-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.link-list a:hover {
    color: #e6b000;
    text-shadow: #000000;
    text-decoration: underline;
}

.ad-box {
    background-color: #333;
    border-radius: 10px;
    margin: 10px;
}

.compatibility-box {
    color: #fff;
    background-color: #333;
    border-radius: 10px;
    margin: 10px;
}

.compatibility-box h4 {
    color: #ccc;
}

.compatibility-box li {
    border-radius: 15px;
    margin: 2px;
    background-color: #444;
    width: max-content;
    padding: 4px;
}

.creators-box {
    color: #fff;
    background-color: #333;
    border-radius: 10px;
    margin: 10px;
}

.creators-box h4 {
    color: #ccc;
}

.creators-box a {
    text-decoration: none;
    color: #fff;
}

footer {
    background-color: #000000;
    padding: 20px;
    color: #fff;
    font-size: 0.9em;
    width: auto;
    height: auto;
}

footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer ul {
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 10px;
}

footer ul li a {
    color: #e6b000;
    text-decoration: none;
    transition: color 0.2s;
}

footer ul li a:hover {
    color: #fff;
    text-shadow: #000000;
}

footer p {
    color:#666;
    text-decoration: none;
    margin: 10px 0 0;
}

.footer-content .socials {
    text-align: left;
}

.footer-content .informations {
    text-align: right;
}

@media (max-width: 600px) {
    .logo h1 {
        height: auto;
        font-size: 1.5em;
    }

    .left-content {
        width: 95%;
    }

    .right-content {
        width: 95%;
    }

    main {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
}