* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
body {
    background: #fff; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='12' viewBox='0 0 20 12'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='charlie-brown' fill='%239C92AC' fill-opacity='0.4'%3E%3Cpath d='M9.8 12L0 2.2V.8l10 10 10-10v1.4L10.2 12h-.4zm-4 0L0 6.2V4.8L7.2 12H5.8zm8.4 0L20 6.2V4.8L12.8 12h1.4zM9.8 0l.2.2.2-.2h-.4zm-4 0L10 4.2 14.2 0h-1.4L10 2.8 7.2 0H5.8z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); 
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.06); 
    color: #545454; 
    /* font-family: "Roboto", sans-serif; */
    font-family: Helvetica Neue, Arial;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.5;
    margin-left: 3em;
  
}
h1, h2 {
    color: #080808;  
}

h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.container {
    font-size: 18pt;
}
 #fondos{
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)),
    url(http://drive.google.com/uc?export=view&id=1lx0dykXoi-QsSsQZFtQVEBwxVrGsqF1p) ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 1%;
    width: 1175px; 
    /* margin-left: 1px; 
   /*  height: 160px;  */
  }

  p {
    line-height: 1.5em;
    font-weight: 500;
    text-indent: 30px;
    padding-bottom: 15px;
    Padding-left: 15px;
    }

 ul {
    display: block; 
    list-style-type: disc; 
    margin-top: 8px; 
    margin-bottom: 15px; 
    margin-left: 6em; 
    margin-right: 0; 
    padding-left: 4%; 
}
ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for abullet */
     color: red; /* Change the color */
     margin-left: 6em;
     font-weight: bold; /* If you want it to be bold */
     display: inline-block; /*Needed to add space between the bullet and the text */ 
     width: 1em; /* Also needed for space (tweak if needed) */
     margin-left: -1em; /*Also needed for space (tweak if needed) */
   }
.main-text {
    text-align: justify;
    margin-bottom: 20px;
}

.author-text {
   /* font-size: 22px; */
    float: left;
    margin-top: 30px;
    margin-left: 10px;
}
.five {
    width: 600px; 
    border: 5px 
    solid blue; 
    margin-left: 5%;
    border-radius: 5px;
  }
.author-box {
    padding-top: 3px;
    border-top: 1px solid #808080;
}
.other {
    margin-top: 160px;
}

.author-box img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    float: left;
}


#h1 {
    position: absolute;
    top: 160px;
    right: 30px;
}
.wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    overflow: hidden;
    transform: translate(-50%, -50%);
}
/* .box {
    float: left;
    font-size: 60px;
    color: darkgray;
    animation-name: animate;
    animation-duration: 1.19s;
    animation-iteration-count: infinite;
} */

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
  }
  
  @-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Add animation to "page content" */
  .animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
  }
  
  @-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 } 
    to { bottom:0px; opacity:1 }
  }
  
  @keyframes animatebottom { 
    from{ bottom:-100px; opacity:0 } 
    to{ bottom:0; opacity:1 }
  }
  
  #myDiv {
    display: none;
  /* text-align: center; */ 
  }
  .tab {
    position: relative;
    max-width: 1000px;
  }
  .tab input { display: none; }

/* (C) TAB LABEL */
.tab label {
  display: block;
  margin-top: 10px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  background: #2d5faf;
  cursor: pointer;
}

/* (D) TAB CONTENT */
.tab .tab-content {
  background: #ccdef9;
  /* CSS ANIMATION WILL NOT WORK WITH AUTO HEIGHT 
  /* THIS IS WHY WE USE MAX-HEIGHT INSTEAD */
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 0;
}
.tab .tab-content p { padding: 10px; }

/* (E) OPEN TAB ON CHECKED */
.tab input:checked ~ .tab-content { max-height: 100vh; }

/* (F) EXTRA - ADD ARROW INDICATOR */
.tab label::after {
  content: "\25b6";
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
  transition: all 0.4s;
}
.tab input:checked ~ label::after { transform: rotate(90deg); }

.author-box img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    float: left;
}

.tab1 {
  position: relative;
  max-width: 1100px;
}
.tab1 input { display: none; }

/* (C) TAB LABEL */
.tab1 label {
display: block;
margin-top: 10px;
padding: 10px;
color: #fff;
font-weight: bold;
background: #2d5faf;
cursor: pointer;
}

/* (D) TAB CONTENT */
.tab1 .tab1-content {
background: #ccdef9;
/* CSS ANIMATION WILL NOT WORK WITH AUTO HEIGHT 
/* THIS IS WHY WE USE MAX-HEIGHT INSTEAD */
overflow: hidden;
transition: max-height 0.3s;
max-height: 0;
}
.tab1 .tab1-content p { padding: 10px; }

/* (E) OPEN TAB ON CHECKED */
.tab1 input:checked ~ .tab1-content { max-height: 100vh; }

/* (F) EXTRA - ADD ARROW INDICATOR */
.tab1 label::after {
content: "\25b6";
position: absolute;
right: 10px;
top: 10px;
display: block;
transition: all 0.4s;
}
.tab1 input:checked ~ label::after { transform: rotate(90deg); }

  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
  }
  .overlay:target {
    visibility: visible;
    opacity: 1;
  }
  .popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    position: relative;
    transition: all 5s ease-in-out;
  }
  .popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
  }
  .popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
  }
  .popup .close:hover {
    color: #06D85F;
  }
  .popup .content {
    max-height: 30%;
    overflow: auto;
  }
  @media screen and (max-width: 700px){
  .box{
      width: 70%;
    }
  .popup{
      width: 70%;
     }
    }