:root {
    --search-bar-border-radius: 100rem;
    --widget-border-radius: 1rem;
    --widget-background: rgba(0, 0, 0, 0.5);
}

#fog {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    inset: 0;
    z-index: -1;
}

.content {
    width: 75%;
}

body {
    background-color: gray;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family:'Courier New', Courier, monospace;
    color: white;
}

#widgets {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3%;
}

.widget {
    width: 30%;
    height: 25rem;

    border: 5px solid white;
    border-top-left-radius: var(--widget-border-radius);
    border-bottom-left-radius: var(--widget-border-radius);
    border-top-right-radius: var(--widget-border-radius);
    border-bottom-right-radius: var(--widget-border-radius);
    background-color: var(--widget-background);
    text-align: center;
}

#dateTime {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#search-bar {
    display: flex;
    border: 5px solid white;
    border-top-left-radius: var(--search-bar-border-radius);
    border-bottom-left-radius: var(--search-bar-border-radius);
    border-top-right-radius: var(--search-bar-border-radius);
    border-bottom-right-radius: var(--search-bar-border-radius);
    height: 3rem;
    justify-content: center;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 2rem;
    flex-direction: row;

    background-color: var(--widget-background);
}

#search-bar-input {
    width: 95%;
    height: 100%;
    background: none;
    outline: none;
    border: none;
    font-size: 100%;
    padding-left: 1rem;
    color: white;
}
#search-bar-submit {
    width: 5%;
    height: 100%;
    background: none;
    outline: none;
    border: none;
    font-size: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-right: 1rem;
    color: white;
}

#search-bar-submit:hover {
    color: rgb(139, 139, 139);
}

#time {
    font-size: 7.5rem;
}
#date {
    font-size: 2.5rem;
}

#shortcuts-grid {
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, 3rem);
    grid-auto-rows: 3rem;
    grid-area: auto;
    justify-content: center;
}

.shortcut img {
    width: auto;
    height: 2rem;
    box-sizing: border-box;
}

footer {
    margin-top: 2.5rem;
}

#quick-notes-text {
    width: 90%;
    height: 17rem;
    margin: 1rem;
    justify-content: center;
    align-items: center;
    background: none;
    outline: none;
    border: none;
    color: white;
}