body {
    background-color: rgb(18,22,26);
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

hr {
    width: 50%;
    background-color: rgb(78, 78, 78);
    height: 3px;
    border-radius: 20px;
    border: none;
    margin: auto;
}

.title {
    font-size: 6rem;
    padding: 20px;
    margin-top: 20px;
    font-family: 'Minecraft', sans-serif;
}
.separator {
    width: 80%;
    height: 2px;
    background-color: gray;
    margin: auto;
}
.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    margin: 60px;
}
.image-box {
    border: 2px solid rgb(78, 78, 78);
    padding: 10px;
    text-align: center;
}
.image-box img {
    width: 150px;
    height: auto;
    display: block;
    margin: auto;
    width: 350px;
}
.image-title {
    background-color: rgba(48, 45, 45, 0.2);
    padding: 5px;
    margin-bottom: 10px;
    font-size: 35px;
}
.button {
    background-color: rgba(48, 45, 45, 0.2);
    border: 2px, solid rgba(114, 113, 113, 0.2);
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    margin-top: 10px;
    font-size: 25px;
    border-radius: 15px;
}

.button:hover {
    background-color: rgba(78, 74, 74, 0.4);
}

.footer-container {
    margin-top: auto;
}

.footer {
    padding: 80px;
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 20px;
}

.footer-link {
    text-decoration: none;
    color: rgb(116, 107, 202);
}

.footer-link:hover {
    color: rgb(84, 77, 145);
}

.get-cape {
    font-size: 35px;
    margin: 10px;
}

.get-cape-desc {
    font-size: 20px;
    margin: 20px;
    border: 2px solid rgb(78, 78, 78);
}

.get-button-wrapper {
    text-align: center;
    padding: 20%;
}

.get-button {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px; 
    background-color: #3c8527; 
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Noto Sans";
    font-weight: bold;
}

.get-button img {
    width: 100px; 
    height: auto;
}

.get-button:hover {
    background-color: #306821;
}

a {
    text-decoration: none;
    color: white;
}

ol {
    display: block;
    margin: 20px;
}

li {
    padding: 5px;
    text-align: left;
}

#back-button {
    font-size: 40px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px;
}

.faq-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faq-row.center {
    justify-content: center;
}

.faq-item {
    flex: 1 1 45%;
    background-color: rgba(48, 45, 45, 0.2);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    max-width: 600px;
}

.faq-question {
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
}

.faq-answer {
    font-size: 20px;
    color: #8f8c8c;
}

#back-button-faq {
    font-size: 30px;
}