* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    shape-rendering: auto;
    /* display: flex;
    flex-direction: column; */
    /* justify-content: center; */
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
}

.color-column {
    flex: 1;
    overflow-y: auto; /* Allow vertical scrolling within each column */
}

.color-box {
    width: 100%;
    height: 100vh; /* Enough height to allow scrolling */
    display: flex;
    color: white;
    font-weight: bold;
}

p {
    margin: 0;
    overflow-wrap: anywhere;
    padding: 10px;
    mix-blend-mode: difference;

}

/* input field Style */

    .input-container {
    margin-top: 25px;
    margin-bottom: 20px;
    text-align: center;
}

#column-input {
    /* padding: 5px 10px; */
    /* font-size: 1.2rem; */
    /* width: 100px; */
    color: black;
}

#submit-btn {
    /* padding: 5px 10px; */
    cursor: pointer;
}


label {
    mix-blend-mode: difference;
    /* color: white; */
}

.right-element {
    position: fixed;
    top: 15px;
    right: 16px;
}

a:hover {
    animation: blinker 0.3s linear infinite;
}

@keyframes blinker {
    50% {
        filter: invert(100%);
    }
}

a {
    color: rgb(0, 0, 0);
    font-size: 1.0em;
        text-decoration: none;
}


@media only screen and (max-width: 979px) {

}