body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}
.navbar {
    background-color: #333;
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.navbar a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
}
.navbar a:hover {
    background-color: #ddd;
    color: black;
}
.container {
    padding: 20px;
    padding-top: 50px;
    text-align: center;
    background: #a7a7a7bf;
}
h1 {
    color: #333;
}

body.home {
    background: url("img/home.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.mirage {
    background: url("img/mirage.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.inferno {
    background: url("img/inferno.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.vertigo {
    background: url("img/vertigo.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.ancient {
    background: url("img/ancient.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.dustii {
    background: url("img/dustii.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.nuke {
    background: url("img/nuke.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.train {
    background: url("img/train.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

body.anubis {
    background: url("img/anubis.png") center center repeat;
    background-size: cover;
    height: 100vh;
}

.smokeContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin: 5px;
    background-color: #ffffffa1;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.smokeContainer h1 {
    margin: 0 0 20px 0;
    font-size: 2rem;
    color: #333;
}

.smokeContainer img {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.smokeContainer p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    max-width: 600px;
}

.image-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    height: 670px;
    max-width: 1800px;
}

.wide-image {
    flex: 2;
    height: 100%;
    overflow-y: hidden;
}

.small-image {
    flex: 1;
    height: 100%;
    overflow-y: scroll;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

::-webkit-scrollbar {
    display: none;
}

.flexcontainer {
    display: grid;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.flexcontainer .navtable {
    border: 2px solid black;
    border-radius: 10px;
    padding: 20px;
    margin: 5px;
    background: #0000004a;
    color: white;
}

.flexcontainer .navtable h3 {
    font-weight: 600;
}

.flexcontainer .content {
    padding: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.flexcontainer .content a {
    color: white;
    text-decoration: none;
    margin: 2.5px;
    border: 1px solid black;
    padding: 5px;
    border-radius: 5px;
    background: #00000085;
}

.flexcontainer .content a:hover {
    background: #000000c4;
}

@media (max-width: 700px) {
    .flexcontainer {
        grid-template-columns: 1fr;
    }

    .smokeContainer .image-container {
        flex-direction: column;
        height: 1000px;
    }

    .image-container .wide-image {
        flex: 1;
    }

    .image-container .small-image {
        flex: 2;
    }
}

.home h3 {
    color: black;
    font-size: 25px;
}

.home a {
    text-decoration: none;
}