body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1c1c1c;
    color: #ccc;
}

a {
    color: #61dafb;
}

.content-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

.centered-list {
    display: inline-block;
    text-align: left;
    margin: 0 auto 1em;
    padding-left: 1em;
    list-style-position: inside;
}

header {
    background: #282c34;
    color: #fff;
    padding: 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    display: inline-block;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.by-andy {
    font-family: 'Dancing Script', cursive;
    font-size: 0.5em;
    display: inline-block;
    margin-left: 10px;
}

.button-scroll {
    background: #61dafb;
    color: #282c34;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    position: relative;
    right: 20px;
}

.title {
    text-align: left;
    margin-left: 0;
}

#about {
    padding: 40px 0 0 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.about-container > .screenshot,
.about-container > .description {
    flex: 1;
    max-width: 500px;
    min-width: 0;
}

.about-container > .screenshot {
    margin-right: 20px;
    display: flex;
    justify-content: center;
}

.about-container > .description {
    margin-left: 20px;
    text-align: left;
}

.screenshot-swiper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
    --swiper-navigation-color: #61dafb;
    --swiper-pagination-color: #61dafb;
    --swiper-pagination-bullet-inactive-color: #FFF;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
    --swiper-pagination-bullet-width: 12px;
    --swiper-pagination-bullet-height: 12px;
}

.screenshot-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #4a9fbf;
    transition: transform 0.3s, background-color 0.3s;
    transform: scale(1.2);
}

.swiper-pagination-bullet:hover {
    background-color: #4a9fbf;
}

#download-section, #changelog, #contact {
    padding: 20px 0;
    text-align: center;
}

#download-section .spacing {
    margin-bottom: 40px;
}

.checksum {
    text-align: center;
    margin-top: 12px;
}

.checksum code {
    display: block;
    font-family: monospace;
    color: #aaa;
    line-height: 1.4;
}

.checksum code.hash {
    display: inline-block;
    width: 32ch;
    margin: 4px auto 0;
    white-space: normal;
    word-break: break-all;
}

.checksum code.note {
  display: inline-block;
  max-width: 32ch;
  margin: 4px auto 0;
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: center;
}

h2 {
    color: #61dafb;
    margin-bottom: 20px;
}

button, .button-scroll, .download-button {
    background: #61dafb;
    color: #282c34;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    text-decoration: none;
}

button:hover, .button-scroll:hover, .download-button:hover {
    background: #4a9fbf;
}

footer {
    background: #282c34;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

ul {
    margin-left: 0px;
    padding-left: 20px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials img {
    width: 50px;
    height: 50px;
    background-color: #61dafb;
    border-radius: 5px;
    transition: transform 0.3s, background-color 0.3s;
}

.socials img:hover {
    transform: scale(1.1);
    background-color: #4a9fbf;
}

@media (max-width: 768px) {   
    header h1 {
        font-size: 1.5em;
        margin-right: 30px;
    }

    .button-scroll {
        position: static;
        transform: translateY(0);
        margin-top: 0;
        padding: 8px 15px;
        font-size: 14px;
    }

    #about {
        text-align: center;
    }

    .about-container {
        flex-direction: column;
    }

    .about-container > .screenshot {
        width: 100%;
        min-width: 0;
        margin: 0 0 20px;
        justify-content: center;
    }

    .about-container > .description {
        margin-left: 0;
        text-align: left;
    }

    .screenshot-swiper {
        max-width: none;
        margin: 0 auto;
    }

    .title {
        text-align: center;
        margin-left: 0;
    }
}
