/*****************/
/* GLOBAL STYLES */
/*****************/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background-color: #191919;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h2 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}


/*************************/
/* FIXED-WIDTH CONTAINER */
/*************************/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/**************/
/* TOP BANNER */
/**************/

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-img {
    max-width: 100%;
    height: auto;
}


/**************/
/* TOP NAVBAR */
/**************/

.navbar {
    overflow: hidden;
    background-color: #dc3545;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    /*border: 1px solid white;*/
    margin: 0 0 0 -1px;
    border-right: 1px solid black;
}

.navbar a:first-child {
    border-left: 1px solid black;
}

.navbar a:hover {
    background-color: #ddd;
    color: #333;
}

.main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 0;
}

.content-box {
    margin: 0 auto;
    padding: 50px 80px;
    background-color: #1F1F1F;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dc3545;
}

.flex-parent {
    display: flex;
    flex-wrap: wrap;
    margin: 40px 0;
}

.flex-child {
    flex: 1;
    padding: 50px;
    box-sizing: border-box;
}

.flex-child>ul {
    list-style-type: circle;
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .content-box {
        padding: 10px;
    }
}

.btn {
    background-color: #343a40;
    border-radius: 3px;
    padding: 10px 0 10px 15px;
}


/*****************/
/* Product Cards */
/*****************/

.card {
    width: calc(33.33% - 20px);
    background-color: #fff;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
}

.card img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.card h1 {
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 5px;
}

.card p {
    font-size: 1rem;
    margin: 0;
}

.card button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .main {
        flex-direction: column;
    }

    .card {
        width: 100%;
    }
}

/*****************/
/* Feature Table */
/*****************/

table {
    border-collapse: collapse;
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
    font-size: 16px;
}

th,
td {
    text-align: left;
    padding: 12px;
    border: 2px solid #dc3545;
}

th {
    background-color: #dc3545;
    color: white;
}


/******************/
/** Image Slider **/
/******************/

.slider-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    overflow: hidden;
    border: 1px solid #dc3545;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 400%;
    height: 100%;
    display: flex;
    transition: transform 0.6s ease;
}

.slider img {
    width: 25%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.slider-nav button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    border: 1px solid #dc3545;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/***************************/
/* Onion Address Container */
/***************************/
.link-container {
    border: 1px solid #dc3545;
    padding: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.link-container a {
    color: white;
    text-decoration: none;
}

.link-container a:hover {
    color: #dc3545;

}

.onion {
    white-space: nowrap;
    overflow: hidden;
    font-size: 2vw;
}

@media screen and (min-width: 1500px) {
    .onion {
        font-size: 1.5vw;
    }
}

@media screen and (min-width: 2000px) {
    .onion {
        font-size: 1.2vw;
    }
}


/********************/
/* Stats Page Stuff */
/********************/

.stats-title {
    background-color: #343a40;
    padding: 8px;
    border-radius: 3px;
    border-bottom: 2px solid #dc3545;
    margin: 0 15px 0 0;
}

.stat {
    margin: 20px 0 20px 20px;
}