/* 
    Created on : Jan 30, 2024, 11:41:28 PM
    Last edit  : May 01, 2025, 10:11:00 PM
    Author     : Christopher James Mercado
*/
@import url(header.css);

:root {
    --color-off-white: #FFF9E3;
    --color-black: #001011;
    --color-dusty-black: #1F271B;
    --color-tan: #C8C3BC;
    --color-brown-gradient-start: #B09879;
    --color-brown-gradient-end: #BFAE98;
    --color-orange-gradient-start: #E5B679;
    --color-orange-gradient-end: #D3AC79;
    --color-checked-green: #11DD6D;
    --color-unchecked-red: #E55555;
    --color-error-red: #E74646;
}
  
* {
    margin: 0;
    padding: 0;
}

header a {
    text-decoration: none;
}

body {
    min-width: 400px;
    font-size: 16px;
    font-family: Verdana, serif;
    background-color: var(--color-tan);
    color: var(--color-black);
}

body > * {
    width: 95%;
    margin: 10px auto;
}

h1 {
    display: flex;
}
h1 a {
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
}

h2 {
    margin: 20px 0.5em;
}

h3 {
    font-size: 1.1em;
}
h4 {
    font-size: 1em;
}

.spaced-row-flexor {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    /* NOTES:
       An active-menu will apply this class, a full-menu will NOT!
       Others may also apply this class.
    */
}

.disable-tap-highlight {
    -webkit-tap-highlight-color: transparent;
    cursor: pointer;
}

#new-link-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
}

.add-new-link {
    font-weight: bold;
    letter-spacing: -0.3px;
    text-decoration: none;
    color: var(--color-dusty-black);
}

.rounded-input {
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1rem; /* 0.3em 0.6em; */
    font-size: 1.5em;
    opacity: 0.75;
}

.no-results-background {
    height: 100vh;
    background-image: url('../resource/no-results-racoon.png');
    background-repeat: no-repeat;
    background-position: center;
    overflow-y: hidden;
}
.cherry-bomb-one-regular {
    position: absolute;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2em;
    font-family: "Cherry Bomb One", Verdana, serif, system-ui;
    color: var(--color-error-red);
    text-align: center;
/*    font-weight: 400;
    font-style: normal;
*/
}


footer {
    font-size: 0.75em;
}