
.container {
    font-family: "Andale Mono", monospace;

    height: calc(100vh - 12vh); /* height fits full screen (but - 12vh) */
    margin: 0 auto;
    padding: 40px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.back-button:hover {
    background-color: #333333;
}

.policyTexts {
    padding-right: 350px;
}

/* Extra small devices (phones) */
@media (max-width: 575.98px) {
    .policyTexts {
        padding-right: 0px;
    }
}

/* Small devices (tablets and larger phones) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .policyTexts {
        padding-right: 0px;
    }
}

/* Medium devices (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .policyTexts {
        padding-right: 0px;
    }
}

/* Large devices (desktops) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .policyTexts {
        padding-right: 0px;
    }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
    /* left to default */
}