* {
    font-family: "Courier New", Courier, monospace;
    user-select: none;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}
input {
    border: 2px solid darkkhaki;
    background: white;
}

a {
    color: blue; 
    text-decoration: underline;
}

.rainbow-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(
        90deg,
        red,
        orange,
        yellow,
        lime,
        cyan,
        blue,
        violet,
        red
    );
    background-size: 200% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: rainbow-text-animation 10s linear infinite;
}

@keyframes rainbow-text-animation {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 200% 50%;
    }
}

#search-input {
    height: 32px;
    width: 100%;
    max-width: 700px;
}

#search-button {
    width: 42px;
    height: 42px;
    padding: 0px;
    background: transparent;
    border: none;
    cursor: pointer;
}

#search-button > img {
    max-width: 100%;
    max-height: 100%;
}

.window-border {
    /*border: 4px solid tan;*/
    box-shadow: 6px 6px 2px rgba(0, 0, 0, 0.6);
    position: absolute;
    max-width: 800px;
}

.window-border > .window-content {
    padding: 8px;
}

.window-content {
    border: 2px solid black;
    border-top-color: lightgray;
    border-left-color: lightgray;
    border-bottom-color: gray;
    border-right-color: gray;
    background: ivory;
}

.window-header {
    border: 2px solid black;
    border-top-color: lightgray;
    border-left-color: lightgray;
    border-bottom: none;
    border-right-color: gray;
    background: linear-gradient(to left, deeppink, blueviolet);
    display: flex;
    padding: 4px 8px;
    justify-content: space-between;
    align-items: center;
}

.window-title {
    margin: 0;
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    pointer-events: none;
}

.window-close {
    height: 1.6em;
    width: 1.6em;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    justify-self: end;
}

button:hover {
    filter: brightness(1.6);
}

button:active {
    filter: brightness(0.8);
    opacity: 0.6;
}

.window-close > img {
    max-height: 100%;
    max-width: 100%;
}
