﻿.page-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    background-color: #f5f5f5;
}

.page-sub-root {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: fit-content;
    font-weight: 500;
    gap: 5px;
    text-align: center;
    transform: translateY(100%)
}

    .page-sub-root > i {
        font-size: 5rem;
        color: #7c94ae;
    }

    .page-sub-root > p > a {
        color: #317dd9;
        text-decoration: none;
        font-weight: 600;
    }

    .page-sub-root > a {
        background-color: #757575;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        color: white;
        width: 200px;
        font-weight: 600;
        font-size: 1.5rem;
        cursor: pointer;
    }

@media only screen and (max-width: 768px) {
    .page-sub-root > p > br {
        display: none;
    }
}
