@import url('https://fonts.googleapis.com/css2?family=Amiko:wght@400;600;700&display=swap');

body {
    font-family: 'Amiko', sans-serif;
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
}

header {
    text-align: center;
    background: #12121220;
    backdrop-filter: blur(256px);
    -webkit-backdrop-filter: blur(256px);
    color: #f0f0f0;
    position: sticky;
    top: 0;
    padding-top: 0.5rem;
    padding-bottom: 1rem;
    z-index: 999;
}

p {
    margin: 0;
}

header h1,
h4 {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 1px 1px 1rem #121212;
}

.hero {
    width: 100%;
    height: 720px;
    background-position: center;
    background-repeat: no-repeat;
}

.hero2 {
    width: 100%;
    height: 400px;
    background-position: center;
    background-repeat: no-repeat;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem auto;
    gap: 0rem;
}

.feature {
    flex: 1 1 calc(33.333% - 40px);
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    text-align: center;
    margin: 1rem;
    max-width: calc(100vw - 4rem);
}

.feature h3 {
    margin-bottom: 10px;
    font-size: 1.25em;
    font-weight: 600;
    color: #f8f8f8;
}

.feature img {
    max-height: 20rem;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    max-width: 80vw;
}

.wide {
    max-height: 30rem !important;
    max-width: 100%;
}

.feature p {
    color: #d0d0d0;
}

.download {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #121212;
}

.download h2 {
    font-size: 1.8em;
    font-weight: 600;
}

.download p {
    color: #d0d0d0;
}

.download a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1.2em;
    color: white;
    background: linear-gradient(-10deg, #007bff, #00ff9580);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    background-size: 200%;
    animation: gradientAnimation 3s ease-in-out infinite;
    transition: ease-in-out all 0.125s;

}

.download-fixed a {
    position: fixed;
    top: 0;
    right: 0;
    background-color: transparent;
}

.download a:hover {
    animation: gradientAnimation 1s ease-in-out infinite;
    scale: 1.1;
    box-shadow: inset 0px 0px 4px white;
    text-shadow: 0px 0px 20px white;
    transition: ease-in-out all 0.25s;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 0% 0%;
    }

    75% {
        background-position: 100% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #121212;
    color: #d0d0d0;
    font-size: 0.9em;
    bottom: 0;
    left: 0;
    width: 100vw;
}

.logo {
    width: 2rem;
    height: 2rem;
    margin-right: 0.5rem;
}

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

.homelink {
    text-decoration: none;
    color: inherit
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
}

.row>* {
    flex: 1;
    height: 100%;
}

.col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.right {
    margin-left: auto;
    margin-right: auto;
}

.giant {
    width: 128px;
    height: 128px;
}

td:first-child {
    text-align: left;
}


table,
tr,
td,
th {
    border-collapse: collapse;
}

tr {
    border-bottom: 1px solid #ffffff20;
    border-collapse: collapse;
    margin: 0;
}

.icon {
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.light {
    opacity: 0.25;
}

th {
    position: sticky;
    top: 4.5rem;
    background: #121212;

}