@import url("typography.css");

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    padding: 0;
}

#announcement-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 4rem;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}

#message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 2rem;
}

h1 {
    font-family: var(--font-accent);
    font-size: var(--font-size-5xl);
    line-height: var(--heading-line-height);
    letter-spacing: var(--letter-spacing-wide);
    font-weight: var(--heading-weight);
}

h2 {
    font-family: var(--font-secondary);
    font-size: var(--font-size-3xl);
    line-height: var(--heading-line-height);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-regular);
}

h3 {
    font-family: var(--h3-font);
    font-size: var(--font-size-md);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-regular);
    margin-bottom: 1.5rem;
}

#nvrshavs-mark-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 6rem;
    height: auto;
    margin-bottom: 2rem;
}

p {
    font-family: var(--font-secondary);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-regular);
    margin-top: 1rem;
}

#contact {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
    padding: 0;
}

#email {
    display: block;
    font-family: var(--font-secondary);
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-bold);
    color: #000000;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0;
    border-radius: none;
    text-align: left;
}

#nvrshavs-tag-container {
    margin-top: 2rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    text-align: center;

}

.tag-item {
    display: flex;
    font-family: var(--font-secondary);
    font-size: var(--font-size-md);
}

.tag-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding: 0.25rem 0.75rem;
    border: 1px solid #080808;
    border-radius: none;
}

.tag-item a:hover {
    color: #ffffff;
    background-color: #5a5a5a;
    border-color: #000000;
}

.nightingale-link {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #080808;
    transition: all 0.2s ease;
    padding-bottom: 2px;
}

.nightingale-link:hover {
    color: #5a5a5a;
    border-bottom: none;
}

footer {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding: 4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-top: 1px solid #080808;
    background-color: #000000;
    color: #ffffff;
}

footer p {
    font-family: var(--font-secondary);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    letter-spacing: var(--letter-spacing-normal);
    font-weight: var(--font-weight-regular);
    color: #666666;
    text-align: left;
    margin: 0;
}