@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

h1 {
    margin: 0 auto;
    font-size: 36px;
    margin-bottom: 16px;
}

h6 {
    margin: 8px auto;
    font-weight: 400;
    font-size: 12px;
    opacity: 0.5;
}

p {
    opacity: 0.8;
    margin-bottom: 10px;
    text-align: justify;
}

.browser-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 24px auto;
}

.browser-list a {
    background-color: var(--ui-button);
    border-radius: 16px;
    width: calc(30% - 40px);
    padding: 40px 20px;
    height: 200px;
    box-shadow: 0 0 5px 5px #0002;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s ease-in;
}

.browser-list a:hover, .browser-list a:focus-visible {
    box-shadow: 0 0 10px 10px #07f4;
    outline: solid 1px var(--primary);
    filter: brightness(1.2);
    letter-spacing: 1px;
}

.browser-list a h3 {
    color: var(--text-color);
}

.browser-list a img {
    max-width: 160px;
    margin: auto;
}

.browser-list a:active {
    box-shadow: none;
    filter: brightness(1);
    transform: translateY(2px);
    box-shadow: 0 0 16px 16px #07ff;
    outline: none;
    transition: 0.05s ease-in;
}

hr {
    border: 1px solid #fff1;
    margin: 20px 0;
}

.bookmarklet-generator-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.bookmarklet-generator-container .param-container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bookmarklet-generator-container .param-container input {
    width: 60%;
    color: #000;
    outline-color: var(--primary);
    outline-width: 1px;
}

.bookmarklet-generator-container .param-container input:focus {
    outline: none;
    box-shadow: 0 0 5px 5px #07f4;
}

.bookmarklet-generator-container .param-container button {
    width: 30%;
    height: 40px;
    background-color: var(--primary);
    border: none;
    border-radius: 4px;
    box-shadow: 0 0 5px 5px #0003;
    color: var(--text-color);
    text-shadow: 0 0 5px #fff4;
    font-weight: 600;
    text-transform: uppercase;
    outline: 0 solid #07f8;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.05s ease-in;
}

.bookmarklet-generator-container .param-container button:hover, .bookmarklet-generator-container .param-container button:focus {
    filter: brightness(1.2);
    outline: 2px solid #07f8;
    box-shadow: 0 0 10px 10px #07f4;
}

.bookmarklet-generator-container .param-container button:active {
    transform: translateY(2px);
    box-shadow: none;
    filter: brightness(0.8);
}

.bookmarklet-generator-container .param-container label {
    width: 20%;
}

.bookmarklet-generator-container .link {
    width: 100%;
    text-align: center;
    margin: 50px auto;
    cursor: pointer;
    text-decoration: underline;
    transition: 0.1s ease-in;
}

.bookmarklet-generator-container .link:hover, .bookmarklet-generator-container .link:focus {
    outline: none;
    letter-spacing: 1px;
    text-shadow: 0 0 32px #07f;
}

.something {
    display: flex;
    background-color: #0008;
    height: 200px;
    width: 100%;
    margin: 20px auto;
}

.something h3 {
    color: #f30;
    font-weight: 500;
    margin: auto;
}

.codebox {
    font-family: Inconsolata, monospace;
    padding: 10px;
    height: 200px;
    border-radius: 2px;
    padding: 10px;
    border: none;
    resize: none;
    background-color: var(--secondary);
    color: var(--text-color);
    cursor: copy;
}

.codebox:focus {
    outline: none;
}

.sb3-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sb3-list a {
    text-decoration: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    color: var(--text-color);
    background-color: var(--ui-button);
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 4px 4px #0002;
    transition: 0.1s ease-in;
}

.sb3-list a:focus, .sb3-list a:hover {
    filter: brightness(1.2);
    outline: 2px solid #07f8;
    box-shadow: 0 0 10px 10px #07f4;
    letter-spacing: 1px;
    font-weight: 700;
}

.sb3-list a img {
    width: 32px;
    height: 32px;
}