html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
    background-image: radial-gradient(ellipse at left top,
    #2944C8 0%,
    #566AEE 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0;

    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    height: 100%;
    width: 100%;
    overflow: hidden;
}


.background-glyph {
    position: absolute;
    z-index: -1;
    opacity: 0.3;
    bottom: 0;
    left: 0;
    width: 75%;
}

h1 {
    width: 100%;
    text-align: center;
    font-size: 128px;
    font-weight: bold;
    text-shadow: rgba(0, 0, 0, 0.212) 0 10px 40px;
    color: white;
    margin: 0;
}

h3 {
    margin: 0;
    font-size: 32px;
    color: white;
    opacity: 0.9;
    text-shadow: rgba(0, 0, 0, 0.5) 0 10px 40px;
}

.outer {
    width: 288px;
}

.repo-btns {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: calc(100% - 16px);
}

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 8px;
    width: 100%;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
    border-radius: 24px;
    transition: all 0.2s ease-in-out;
    gap: 8px;
    box-shadow: rgba(0, 0, 0, 0.212) 0 10px 40px;
    max-width: 100%;
}

.btn:hover {
    transform: scale(105%);
    filter: brightness(105%);
}

.btn:active {
    transform: scale(95%);
    filter: brightness(95%);
}

.btn p {
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.icon {
    width: 48px;
    padding: 5px 10px;
}

#cydia {
    background-color: rgb(163, 102, 72);
}

#sileo {
    background-color: rgb(47, 194, 191);
}

#zebra {
    background-color: rgb(51, 51, 51);
}

#installer {
    background-color: rgb(47, 145, 194);
}

@media screen and (max-width: 425px) {
    .background-glyph {
        opacity: 0.6;
    }
}

@media screen and (max-width: 768px) {
    .outer {
        max-width: 100%;
    }

    .btn p {
        font-size: 90%;
    }

    h1 {
        font-size: 80px;
    }

    h3 {
        font-size: 32px;
    }

    body {
        gap: 10%;
    }

    .repo-btns {
        gap: 16px;
    }

    .icon {
        width: 32px;
    }
}