body {
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: auto;
    overflow-x: hidden;
    align-items: stretch;
    min-height: 100%;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    text-align: center;
    padding: 20px;
    background-color: #252525;
    color: #ffffff;
    width: auto;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 32px;
}

header .store-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

header .store-links a {
    color: #ffffff;
    margin: 0 10px;
    text-decoration: none;
}

header .store-links a:hover {
    text-decoration: underline;
}

section {
    width: 100%;
    margin: 20px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.section2 {
    width: 100%;
    margin: -10px 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.plugins-box {
    width: 88%;
    box-sizing: border-box;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin-right: 10px;
}

.featured-box {
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin-left: 10px;
}

.discord-box {
    width: calc(100% - 20px);
    box-sizing: border-box;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin-left: 10px;
}

.blog-box {
    width: calc(66.666% - 20px);
    box-sizing: border-box;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 40px;
    margin-right: 10px;
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 5px;
    overflow: hidden;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #252525;
    color: #ffffff;
    width: 100%;
    position: fixed;
    bottom: 0;
}

footer p {
    margin: 0;
}

a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}

@media (max-width: 441px) {
    footer {
      width: auto;
    }
}

@media (max-width: 600px) {
    section,
    .section2 {
        flex-direction: column;
        align-items: center;
    }

    .plugins-box,
    .featured-box,
    .discord-box {
        margin: 0 10px 20px 10px;
        width: calc(100% - 20px);
    }
}
