html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1; 
}

.loading {
    width: 100px;
    height: 100px;
    display: block;
    margin: 40px auto;
    margin-top: 100px;
}

.text {
    width: 60%;
    margin: 0 auto;
    height: 100%;
}

.text p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.text p a {
    color: var(--color-primary);
    font-weight: 700;
}

.text p a:hover {
    color: var(--color-primary-light);
}

.text p a:active {
    color: var(--color-primary-dark);
}
