﻿.title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.title-underline-subtitle {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 4px;
    background-color: #589e1e;
    border-radius: 2px;
}

.title-underline-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6%;
    height: 4px;
    background-color: #589e1e;
    border-radius: 2px;
}

body {
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
}
