@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter Tight" sans-serif, system-ui, -apple-system,
        BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell,
        "Open Sans", "Helvetica Neue";
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    font-size: 1.03em;
    background-color: balck;
}

*::-webkit-scrollbar {
    display: none;
}

.kanban {
    display: flex;
    padding: 15px;
    width: 750px;
    height: 100vh;
    width: 100vw;
    background-image: url("../images/back.jpg");
    background-position: center;
    background-size: cover;
}

.kanban * {
    font-family: sans-serif;
}

.kanban__column {
    background-color: #30306138;
    border-radius: 5px;
    padding: 10px 10px;
    max-width: 350px;
    flex: 1;
    overflow: scroll;
}

.kanban__column:not(:last-child) {
    margin-right: 20px;
}

.kanban__column-title {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 30px;
    color: #dadeff;
    user-select: none;
}

.kanban__item-input {
    padding: 7px 10px;
    box-sizing: border-box;
    font-weight: 300;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 1px 0.3px 3px #1d5d79;
}

.kanban__dropzone {
    height: 8px;
    transition: background 0.15s, height 0.15s;
}

.kanban__dropzone--active {
    height: 40px;
    border-radius: 5px;
    margin: 5px 0px;
    background: rgba(0, 0, 0, 0.25);
}

.kanban__add-item {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: white;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#info {
    background-color: rgba(0, 55, 255, 0.325);
    position: fixed;
    top: 15px;
    transform: rotate(60deg);
    right: 15px;
    border: none;
    height: 2.3em;
    width: 2.3em;
    color: white;
    border-radius: 50%;
}

#popup {
    border: none;
    width: 500px;
    color: white;
    padding: 40px 60px;
    border-radius: 10px;
    position: absolute;
    margin: 0 auto;
    margin-top: 125px;
    /* background-color: #15152aea; */
    background-image: url(../images/gunbg.png);
    background-position: center;
    background-size: cover;
    animation: slide 0.2s ease-in-out;
}

@keyframes slide {
    from {
        transform: translateY(-100px);
    }
}

.infohead {
    text-align: center;
    margin: 0.5em 0;
    font-size: 1.7em;
    font-weight: 400;
}

li {
    list-style: "💠 ";
    margin-left: 1.6em;
}

.infoContent {
    font-size: 1.1em;
    line-height: 1.7em;
    font-weight: 300;
}

.closePopup {
    position: absolute;
    top: 10px;
    right: 20px;
    border: none;
    color: tomato;
    font-weight: 700;
    padding: 5px 5px;
    border-radius: 50%;
    background-color: #702b2b75;
}

.closePopup:hover {
    background-color: #8f242475;
}

#noSelect {
    user-select: none;
}

.slay {
    color: rgb(91, 181, 255);
    text-align: center;
    font-size: 1.2em;
    margin-top: 15px;
    user-select: none;
}
