:root {
    --primary-color: #00a1d4; /* Logo color */
    --primary-color-dark: #008bb5; /* Darker shade of logo color */
    --primary-color-light: #4dc7ff; /* Lighter shade of logo color */
    --secondary-color: #333; /* Footer color */
    --text-color: #333; /* Text color */
    --background-color: white; /* Background color */
    --font-family: 'Avenir', sans-serif; /* Font family */
    --font-size-small: 0.9rem; /* Small font size */
    --font-size: 1.5rem; /* Font size */
    --font-size-large: 2.5rem; /* Large font size */
    --line-height-small: 1.25; /* Small line height */
    --line-height: 1.5; /* Line height */
    --line-height-large: 2; /* Large line height */
    --gray-one: #ffffff; /* Light gray */
    --gray-two: #f9f9f9; /* Medium gray */
    --gray-three: #f3f3f3; /* Dark gray */
    --notch-left: env(safe-area-inset-left, 0);
    --line-color: oklch(0% 0 0 / 40%);
    --border1: .1px solid var(--line-color);
    --blurry-color: oklch(100% 0 0 / 40%);
    --blurry-color-contrast: oklch(30% 0 0 / 40%);
    --margin-block: 2rem;
    --margin-block-small: 1rem;
    --padding-inline: 5rem;
    --padding-inline-small: 2rem;
}

/* Title */
.title {
    font-size: var(--font-size-large);
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
}
.title-bar {
    background-color: var(--gray-two);
    padding-inline: 2rem;
    padding-block: .5rem;
    text-align: start;
}
.subtitle {
    font-size: var(--font-size-large);
    color: var(--text-color);
    font-weight: 400;
    margin: 0;
}
/* Components */
.row {
    margin-block: 2rem;
}

.content {
    padding-inline: var(--padding-inline-small);
    margin-block: var(--margin-block-small);
    color: var(--text-color);
    font-size: var(--font-size);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* General Theme Settings */
body {
    font-family: var(--font-family);
    font-size: var(--font-size);
    color: var(--text-color);
    background-color: white;
    margin: 0;
    padding: 0;
}

main {
    padding-left: var(--notch-left);
    transition: all 0.3s ease-in-out;
}

/* Buttons */
button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 10px 20px;
    font-size: var(--font-size);
    cursor: pointer;
}

button:hover {
    background-color: var(--primary-color); /* Darker shade of logo color */
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


@media (max-width: 768px) {
    :root {
        --font-size-large: 1.35rem; /* Large font size */
        --font-size: 1.25rem; /* Font size */
        --font-size-small: 0.85rem; /* Small font size */
    }
}