/* CONTENT ALIGNMENT */
#vertical-flex-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
}

.horizontal-spacer {
    display: flex;
    justify-content: space-around;
}

/* TITLES */
h1 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--header-blue);
}

h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--header-blue);
    margin: 20px 0 15px 0;
}

h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--header-blue);
}

/* TEXT */
.url-text {
    color: var(--header-blue);
    text-decoration: none;
    cursor: pointer;
}

.url-text:hover {
    text-decoration: underline;
}

/* WIDGETS */
input {
    font-family: "PT Sans", sans-serif;
    font-size: 1rem;
    padding: 3px;
    border-radius: 3px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.6);
}

/* OTHER */
hr {
    border: 0;
    height: 2px;
    background-color: var(--header-blue-light);
}