@charset "UTF-8";
a.button {
    margin: 20px;
    font-size: 15px;
}

.arrow {
    color: #0c5449;
    /*background-color: #f6f3ed;*/
    margin: 1em 0;
}
.arrow::after {
    display: inline-block;
    padding-left: 8px;
    content: "➞";
    transition: transform 0.3s ease-out;
}
.arrow:hover {
    color: #0c5449;
    background-color: #f6f3ed;
}
.arrow:hover::after {
    transform: translateX(4px);
}

.raise:hover,
.raise:focus {
    box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
    transform: translateY(-0.25em);
}

@import "bourbon";

#page {
    width: 100%;
    /*max-width: 700px;*/
/*//outline: 1px solid lime;*/
    min-height: 300px;
    /*margin: 20px auto 0;*/
}

.hide {
    visibility: hidden;
}

.pagination {
    width: 100%;
    max-width: 700px;
    margin: 10px auto;
    min-height: 50px;
//outline: 1px solid tomato;
    /*text-align: center;*/
}

.title {
    font-size: 28px;
    margin-bottom: 10px;
    float: left;
    text-align: center;
    width: 58%;
    padding: 1%;
}

.prev,
.next {
//outline: 1px solid black;
    float: left;
    font-size: 28px;
    width: 18%;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    background: #bbb;
    border-radius: 5px;
    padding: 1%;
}

.content {
    clear: both;
}

/* .console {
  width: 95%;
  max-width: 700px;
  margin: 10px auto;
  padding: 10px 0;
  outline: 1px solid cyan;
  text-align: center;
} */

.pageNum {
    padding: 5px 10px;
    border-radius: 100px;
    margin: 10px;
    /*display: inline-block;*/
    background: #ddd;
    cursor: pointer;

&.navActive {
     background: #bbb;
     color: white;
 }
}
