/* Page style - Accessibility */
body {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.containers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 50px 0 50px;
}

.settings {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

@media (max-width: 1030px) {
    .containers {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
    }
}

.page-info {
    display: flex;
    position: relative;
    max-width: 500px;
    border-radius: 15px;
    height: auto;
    margin: 0 20px 0 20px;
}

.page-info p {
    padding: 30px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 20%; */
    padding: 10px;
    border: 2px solid;
    border-radius: 20px;
    background-color: #FAF9F6;
}

.controls{
    display: flex;
    align-items: center;
    justify-content: center;
}

.resize-btn{
    border: 2px solid;
    background-color: #FAF9F6;
    cursor: pointer;
    border-radius: 20px;
    padding: 8px 10px;
    margin: 0 10px;
}

.reset-btn{
    border: 2px solid;
    background-color: #FAF9F6;
    cursor: pointer;
    border-radius: 20px;
    padding: 8px 10px;
    margin: 0 10px;
}

.container .controls input{
    -webkit-appearance: none;
    height: 7px;
    /* width: 100%; */
    background: #FAF9F6;
    border-radius: 10px;
    outline: none;
    border: none;
}

.container .controls input::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    background: black;
    border-radius: 50%;
    cursor: pointer;
}

/* Font Buttons */
.font-btn{
    border: 2px solid;
    background-color: #FAF9F6;
    cursor: pointer;
    border-radius: 20px;
    padding: 8px 10px;
    margin: 0 10px;
}

#anta-font-btn{
    font-family: "Anta", sans-serif;
}

#lexend-font-btn{
    font-family: "Lexend", sans-serif;
}

#calibri-font-btn{
    font-family: Calibri, serif;
}

.page-footer {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 2px solid;
    border-radius: 20px;
    margin: 20px;
    padding: 20px;
    box-shadow: 0 0 10px 2px;
}

.page-footer .info .p1,
.page-footer .info .p2,
.page-footer .info .p3,
.page-footer .about .p1 a {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.page-footer .about .p1 a {
    color: black;
    text-decoration: none;
}

.page-footer .info .p3 a {
    color: black;
}

.page-footer .info p,
.page-footer .about p {
    padding: 10px;
}
