#instructions-header {
    font-size: 16px;
    text-align: center;
    padding: 25px;
    line-height: 32px;
    color: white;
    text-shadow: 1px 1px 4px rgb(0, 0, 0);
}

#patcher-instructions {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    font-family: sans-serif;
    box-shadow: inset 4px 4px 2px rgba(0, 0, 0, 0.5), inset -4px -4px 2px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    color: #222;
}

#patcher-flex {
    display: flex;
    gap: 25px;
    padding: 0 25px;
}

#patcher-wrapper {
    padding: 0;
    font-family: sans-serif;
    width: 40%;
    margin: 0 auto;
}

.text-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #ec7e2f;
    border-radius: 4px;
    width: 60%;
    margin: 0 auto;
    box-shadow: 0px 0px 8px #777777;
    height: fit-content;
}

.text-wrapper span {
    font-family: 'mythMono';
    font-size: 32px;
    color: white;
    padding: 2px;
    border-radius: 4px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
}

.text-wrapper a {
    margin-left: 4px;
}

.box-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #24a387;
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0px 0px 8px #777777;
}

.box-wrapper span {
    font-family: 'mythMono';
    font-size: 20px;
    color: white;
    padding: 3px;
    border-radius: 4px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
}

.box-wrapper a {
    margin-left: 4px;
}

#instructions span {
    font-family: 'mythMono';
    font-size: 20px;
    color: white;
    padding: 0 3px;
    margin-left: 4px;
}

#gh-card {
    background-color: white;
    border-radius: 4px;
    padding: 4%;
    margin: 0 6px 6px 6px;
}

#owner {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

#owner img {
    width: 48px;
    height: 48px;
    border-radius: 20%;
    border: 1px solid #e1e8ed;
    display: none;
}

#owner-link {
    font-size: 13px;
    color: #657786;
    text-decoration: none;
}

#repo-link {
    font-size: 16px;
    font-weight: 500;
    color: #0969da;
    text-decoration: none;
}

#instructions {
    font-size: 18px;
}

#instructions p {
    background-color: white;
    border-radius: 4px;
    padding: 8px 8px 8px 8px;
    margin: 2px 6px 8px 6px;
    line-height: 26px;
}

#emulator-instructions {
    padding: 25px;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 4px #222;
}

#emulator-instructions h3 {
    margin-bottom: 0;
}

@media (max-width: 800px) {
    #patcher-flex {
        flex-direction: column;
    }

    #patcher-wrapper {
        width: 80%;
    }

    .text-wrapper {
        width: 80%;
        margin: 0 auto;
    }
}