:root {
    --text: #404040;
}

.content-wrapper {
    background-color: #C7E2FB;
}

.content-wrapper .center-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content-wrapper .center-content h1 {
    width: 100%;
    color: var(--text);
    font-size: xxx-large;
    font-weight: 500;
}

.content-wrapper .center-content .line {
    width: 100%;
    height: 1px;
    background-color: var(--text);
}

.content-wrapper .center-content .wrapper {
    width: 100%;
    max-width: 800px;
    color: var(--text);
    font-size: x-large;
    flex-shrink: 1;
}

.content-wrapper .center-content .wrapper a {
    position: relative;
    color: var(--text);
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: text-decoration-color 0.3s ease;
}

.content-wrapper .center-content .wrapper a:hover {
    text-decoration-color: currentColor;
}

.content-wrapper .center-content .wrapper p {
    margin-top: 3rem;
}

.content-wrapper .center-content .wrapper p:last-child {
    margin-bottom: 4rem;
}
