body
{
    background-color: #fff;
    color: rgb(6, 7, 75) !important;
    height: auto; 
    min-height:700px; 
    overflow-x:hidden;
    margin:10px;
    font-family: sans-serif;
}

html {
  scroll-behavior: smooth;
}

.text-to-ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

.section {
    /* border: 1px solid red; */
    position: relative; /* needed for footer positioning*/
    height: auto !important; /* real browsers */
    min-height: 700px; /* real browsers */;
    margin-top: 10px;
    width: auto;
    padding: 50px 250px 50px 250px;

    /* border-bottom: 1px solid rgba(187, 187, 187, 0.35); */
    
}
p {
  text-align: justify;
}

.terminal-buttons {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    border: 1px solid #000;
    position: relative;
    top: 6px;
    left: 6px;
    background-color: #ff3b47;
    border-color: #9d252b;
    display: inline-block;
  }
  
  .terminal-minimize {
    left: 11px;
    background-color: #ffc100;
    border-color: #9d802c;
  }
  
  .terminal-zoom {
    left: 16px;
    background-color: #00d742;
    border-color: #049931;
  }

.terminal-menu{
    
  box-sizing: border-box;
  height: 25px;
  background-color: #bbb;
  margin: 0 auto;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
}
.terminal-body{
    background-color: #3b3a3a;
    box-sizing: border-box;
    min-height: 680px;
    padding: 20px;
    margin-bottom: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

#myBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 10px;
    border: none;
    outline: none;
    background-color: rgb(51, 102, 155);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 20px;
  }
  
  #myBtn:hover {
    background-color: rgb(33, 35, 54);
  }

  @media only screen and (max-width: 1200px) {
  .section {
    padding: 25px;
    height: auto;
    }
  }