@import url(/global.css);

html {
    height: 100%;
}

button {
    padding: 10px;
    font-size: 1em;
    background-color: #c099ff;
    border-radius: 10px;
    border: 3px solid #d0aaff;
    color: #191622;
    cursor: pointer;
}

input {
    padding: 10px;
    font-size: 1em;
    background-color: #886db4;
    border-radius: 10px;
    border: 3px solid #644f84;
    color: #191622;
    cursor: text;
    outline: none;
    transition: background-color 0.25s, border 0.25s;
}

.inputButton {
    padding: 10px;
    font-size: 1em;
    background-color: #886db4;
    border-radius: 10px;
    border: 3px solid #644f84;
    color: #191622;
    cursor: pointer;
    outline: none;
    transition: background-color 0.25s, border 0.25s;
}

input::placeholder {
    color: #3f3f3f;
}

input:not(:placeholder-shown),
.inputButton:hover {
    background-color: #a986e2;
    border-radius: 10px;
    border-color:rgb(168, 134, 209);
}

p:not(.hint) {
    margin-bottom: 15px;
}

button:hover {
    background-color: #cdadff;
    border: 3px solid rgb(201, 161, 250);
}

button:active {
    scale: 0.98;
}

.main {
    padding: 150px 225px;
    background-color: #3a3a3a;
    border-radius: 10px;
    border: 5px solid #3f3f3f;
    max-width: 450px;
    max-height: 300px;
    display: flex;
    cursor: copy;
    justify-content: center;
}

#offscreenalert {
    position: absolute;
    padding: 20px;
    background-color: #3a3a3a;
    border: 3px solid #3f3f3f;
    border-radius: 4px;
    top: -70px;
    transition: 0.4s cubic-bezier(.68,-0.55,.27,1.55);
}

#fullColor {
    cursor: copy;
    height: fit-content;
    width: fit-content;
}

.colors {
    margin-bottom: 10px;
}


@media (max-width: 768px) {
    .main {
        padding: 75px 70.5px;
    }

    p {
        font-size: 0.9rem;
    }

    button, input {
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .main {
        padding: 75px 10.5px;
    }
}