@import url("/styles/common.css");

body {
    background-image: linear-gradient(to left, #0038ff, #008dff, #00b8ff, #00d797, #67eb12);
}

/* FOR CONTENT PAGES */
.content-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 30px;
    /* margin-right: 12%; */
}

.content {
    /* Control content box width here --> */ width: 40%;
    min-width: 600px;
    min-height: 940px;
    background-color: whitesmoke;
    /* box-shadow: 0px 8px 16px 0px rgba(91, 91, 91, 0.744); */
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 30px;
    padding-bottom: 30px;
    /* text-align: justify; */
    border-radius: 20px;
}

.content img {
    width: 100%;
    border-radius: 20px;
    /* min-width: 600px; */
}

.footer-container {
    background-color: transparent;
}

#title {
    font-size: 60px;
    color: #C21010;
    padding-bottom: 12px;
}

#chapter-title {
    color: gray;
    padding-bottom: 20px;
    padding-left: 2px;
}

.caption {
    color: gray;
    font-size: medium !important;
    text-align: center !important;
    width: 100%;
    margin-bottom: 40px !important;
    margin-top: 10px !important;
}

#content {
    font-size: medium;
    color: black;
    padding-top: 20px;
}

#content p {
    line-height: 170%;
    font-size: 18px;
    text-align: justify;
}

.navigation {
    /* background-color: white; */
    list-style-type: none;
    /* margin-top: 30px; */
    padding: 8px 8px 8px 8px;

    /* border-radius: 4px; */
    background-color: transparent;
    height: fit-content;
    /* border-left: #E64848 solid 3px ; */
    /* text-shadow: 2px 2px 2px #C21010; */
    color: whitesmoke;
    position: absolute;
}

.navigation li:hover a, .navigation label:hover {
    /* text-shadow: none; */
    transition: 0.5s;
    color: #e3e3e3;
}

.navigation li:hover, #active {
    /* text-shadow: none; */
    border-left: 1px dashed white;
}

.navigation div {
    /* background-color: white; */
    font-size: medium;
    margin-bottom: 22px;
}

.navigation li {
    /* background-color: white; */
    font-size: large;
}

.navigation a {
    /* background-color: white; */
    margin-top: 14px;
    margin-left: 12px;
    padding: 0;
    padding-left: 0;
    color: whitesmoke;
}

.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
  }
  
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    bottom: 100%;
    width: 120px;
    left: 50%;
    margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
  
    /* Position the tooltip */
    position: absolute;
    z-index: 4;
}
  
.tooltip:hover .tooltiptext {
    visibility: visible;
  }