@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

html,
body {
    height: 100%;
    margin: 0;
}

body {
    font-family: "Libertinus Sans", sans-serif;
    background-color: #ebecf0;
    font-size: 20px;
}

.wrapper {
    overflow: clip;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.wrapper>main {
    flex-grow: 1;
}

.page {
    max-width: 1000px;
    padding: 30px;
    margin: 0 auto;
}

.page-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 30px;
    color: deepskyblue;
}

ul.page-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-item {
    width: 100%;
    box-shadow: inset 2px 2px 5px #BABECC, inset -5px -5px 10px #FFF;
    transition: all 0.2s ease-in-out;
    background-color: #ebecf0;
    text-shadow: 1px 1px 0 #FFF;
    border: 0;
    outline: 0;
    border-radius: 20px;
    padding: 16px;
}

.page-subtitle {
    font-size: 1.6rem;
    line-height: 1.3;
    color: deepskyblue;
    font-weight: 800;
    margin: 0px;
}

.subtitle {
    margin: 30px 0 10px;
}

.page-link {
    display: inline-block;
    border-radius: 20px;
    box-shadow: -5px -5px 20px #FFF, 5px 5px 20px #BABECC;
    margin: 5px 0 0 0;
    color: #61677C;
    font-weight: bold;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-weight: 600;
    border: 0;
    outline: 0;
    font-size: 1rem;
    padding: 16px;
    background-color: #00bfff14;
    /*background-color: #ebecf0;*/
    text-shadow: 1px 1px 0 #fff;
}

.page-link:hover {
    box-shadow: -2px -2px 5px #fff, 2px 2px 5px #BABECC !important;
}

.page-text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    margin: 10px auto;
}

.footer-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-link {
    margin: 20px auto;
}

/*==============================*/