body {
    background: #107004 url('floral-sham.png') !important; /*https://www.freepik.com/free-vector/ornamental-floral-background_838718.htm*/
    background-repeat: repeat !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}

/* div.rnd{
    border-radius: 25px;
    padding: 20px;
} */

::selection{
  background: #107004;
  color: white;
}

a[href]{
  color: #107004; /*all links*/
}

a[href].btn{
  color: white; /*project buttons*/
}

p {
  font-family: 'Epilogue'; font-size: 16px;
}

a {
  font-family: 'Epilogue'; font-size: 16px;
}

span{ font-family: 'Epilogue';}

h2{ font-family: 'Epilogue';}

h4{ font-family: 'Epilogue'; font-weight: bold;}

h5{ font-family: 'Epilogue';}


/*nav bar*/


#navbar a:hover
{
    color: #cde3c4;
}

.navbar-custom{
  background-color: #107004;
}

#nav-color{
  background-color: #107004;
}

#nav-background{
  background-color: #107004;
}

#navlinks{
  color: #ffffff;
  font-size: 16px;
  text-shadow: 1px 1px #000000;
  font-weight: bold;
}

img#lep:hover{
    margin-top: -60px;
}

.dropdown-item:hover{color:#cde3c4 !important;}

.drop-background{
  color: #ffffff; font-size: 16px; font-weight: bold;  text-shadow: 1px 1px #000000;
}

.dropdown-custom{
    color: #ffffff !important;
    font-size: 16px;
    text-shadow: 1px 1px #000000;
    font-weight: bold;
}

.dropdown-custom:hover{color:#cde3c4 !important;}

#name {
    display: flex;
    justify-content: center;
    text-align: center;
    color:#ffffff;
    text-shadow: 1px 1px #000000;
    font-weight: bold;
    font-style: italic;
}

#name:hover{color:#cde3c4 !important;}

/*index*/
#termynal{
  width:  120%;
  height: 100%;
  margin-left: 15px;
}

span#kalitool:hover{
    color: rgb(1, 196, 255); /*kali color :)*/
}

span{
  word-wrap: break-word;
  width: 103%;
}

#buttoncss{ /*If I want to add in the future*/
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;

  text-decoration: none;
  color: initial;
}

#commands{
  color:white;
}

#dollar{
  text-align: left;
  color:white;
}

/*Blog*/

.pagination{
  background-color: #cde3c4;
  position:relative;
  bottom:0;
  height: 2.5rem; /* Height of the footer */
  padding: 5px;
  border-width: 5px;
  border-style: solid;
  border-color: #107004;
  width:100%;
  text-align: center;
}
.pagination li a.page-link{
    color: #fff;
    background-color: #000;
    font-size: 20px;
    font-weight: 500;
    width: 30px;
    padding: 0;
    margin: 0 5px 6px;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.pagination li a.page-link:hover,
.pagination li a.page-link:focus,
.pagination li.active a.page-link:hover,
.pagination li.active a.page-link{
    color: #fff;
    background: #000;
    text-shadow: 0 0 6px rgba(0,0,0,0.2);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.pagination li a.page-link:before{
    content: '';
    background: #107004;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.pagination li a.page-link:hover:before,
.pagination li a.page-link:focus:before,
.pagination li.active a.page-link:hover:before,
.pagination li.active a.page-link:before{
    height: 100%;
}

#shadowtext{
    color: white;
    text-shadow: 1px 1px #000000;
    font-weight: bold;
    font-size: medium
}

.card-title{
  font-weight: bold;
}

/* Outline In  https://github.com/IanLunn/Hover/blob/master/css/hover.css*/
#gallery-card {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  border-radius: 25px;
}
#gallery-card:before {
  pointer-events: none;
  content: '';
  position: absolute;
  border: #cde3c4 solid 6px;
  border-radius: 25px;
  top: -16px;
  right: -16px;
  bottom: -16px;
  left: -16px;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: top, right, bottom, left;
  transition-property: top, right, bottom, left;
}
#gallery-card:hover:before, #gallery-card:focus:before, #gallery-card:active:before {
  top: -8px;
  right: -8px;
  bottom: -8px;
  left: -8px;
  opacity: 1;
}

#gallery-card img{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}
#gallery-card figcaption{
  position: absolute;
  display: none;
  inset: 2px;  
}
#gallery-card:hover 
img{
  filter: brightness(40%);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  display: inline-block;
}
#gallery-card:hover 
figcaption{
  display: flex;
  padding: 1em;
  justify-content: center;
  align-items: center;  
  font-size: large;
  color: white;
}
/* @media screen and (max-width: 640px) {
  #gallery-card img{
    filter: brightness(40%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
    display: inline-block;
  }
  #gallery-card figcaption{
  display: flex;
  padding: 1em;
  justify-content: center;
  align-items: center;  
  font-size: large;
  color: white;
  }
} */

/*.gallery-display{*/
/*  padding: 10px;*/
/*  max-width: 1100;*/
/*  margin: 0 auto;*/
/*  background: white;*/
/*  display: grid;*/
/*  grid-gap: 10px;*/
/*  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*  grid-auto-rows: 250px;*/
/*  grid-auto-flow: dense;*/
/*}*/

/*.v-stretch{*/
/*  grid-row: span 2;*/
/*}*/

/*.v-single{*/
/*  grid-row: span 1;*/
/*}*/

/*.h-stretch{*/
/*  grid-column: span 2;*/
/*}*/

/*.big-stretch{*/
/*  grid-row: span 2;*/
/*  grid-column: span 2;*/
/*}*/

/*.bigger-stretch{*/
/*  grid-row: span 2;*/
/*  grid-column: span 4;*/
/*}*/

/*.bigi-stretch{*/
/*  grid-row: span 2;*/
/*  grid-column: span 3;*/
/*}*/

/*.gallery-display div img{*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  object-fit:cover;*/
/*}*/

/*@media only screen   */
/*and (min-device-width : 768px)   */
/*and (max-device-width : 1024px)  */
/*{ .gallery-single div img{*/
/*  width: 500px;*/
/*  height: 500px;*/
/*  object-fit:cover;*/
/*  padding: 10px;*/
/*  margin: 0 auto;*/
/*  background: white;*/
/*}} */

/*@media only screen   */
/*and (min-width: 1030px)   */
/*and (max-width: 1366px)  */
/*{ .gallery-single div img{*/
/*  width: 500px;*/
/*  height: 500px;*/
/*  object-fit:cover;*/
/*  padding: 10px;*/
/*  margin: 0 auto;*/
/*  background: white;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}}  */

/*@media only screen   */
/*and (min-width: 1370px)  */
/*{ .gallery-single div img{*/
/*  width: 500px;*/
/*  height: 500px;*/
/*  object-fit:cover;*/
/*  padding: 10px;*/
  /* max-width: 600; */
/*  margin: 0 auto;*/
/*  background: white;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;} } */

/*@media(max-width: 990px)*/
/*{*/
/*  .v-stretch{*/
/*    grid-row: span 2;*/
/*  }*/

/*  .gallery-single{*/
/*    padding: 10px;*/
/*    max-width: 1100;*/
/*    margin: 0 auto;*/
/*    background: white;*/
/*    display: grid;*/
/*    grid-gap: 10px;*/
/*    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*    grid-auto-rows: 250px;*/
/*    grid-auto-flow: dense;*/
/*  }*/

/*  .gallery-single div img{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit:cover;*/
/*  }*/
/*  .v-single{*/
/*    grid-row: span 1;*/
/*  }*/
/*  .h-stretch{*/
/*    grid-column: span 2;*/
/*  }*/
/*  .big-stretch{*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .bigger-stretch{*/
/*    grid-row: span 1;*/
/*    grid-column: span 2;*/
/*  }*/

/*  .bigi-stretch{*/
/*    grid-row: span 1;*/
/*    grid-column: span 2;*/
/*  }*/
/*}*/

/*@media(max-width: 560px)*/
/*{*/
/*  .v-stretch{*/
/*    grid-row: span 1;*/
/*  }*/
/*  .v-single{*/
/*    grid-row: span 1;*/
/*  }*/

/*  .gallery-single{*/
/*    padding: 10px;*/
/*    max-width: 1100;*/
/*    margin: 0 auto;*/
/*    background: white;*/
/*    display: grid;*/
/*    grid-gap: 10px;*/
/*    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
/*    grid-auto-rows: 250px;*/
/*    grid-auto-flow: dense;*/
/*  }*/

/*  .gallery-single div img{*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit:cover;*/
/*  }*/

/*  .h-stretch{*/
/*    grid-column: span 1;*/
/*  }*/
/*  .big-stretch{*/
/*    grid-column: span 1;*/
/*    grid-row: span 1;*/
/*  }*/

/*  .bigger-stretch{*/
/*    grid-row: span 1;*/
/*    grid-column: span 1;*/
/*  }*/

/*  .bigi-stretch{*/
/*    grid-row: span 1;*/
/*    grid-column: span 1;*/
/*  }*/
/*}*/


.gallery-display{
  padding: 10px;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  background: white;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
}

.v-stretch{
  grid-row: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-single{
  grid-row: span 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.h-stretch{
  grid-column: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-stretch{
  grid-row: span 2;
  grid-column: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bigger-stretch{
  grid-row: span 2;
  grid-column: span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.all-stretch{
  grid-row: span 2;
  grid-column: span 4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid-stretch{ /*To have no large white gaps between videos and images*/
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video.vid-stretch:-webkit-full-screen{ /*Custom Fullscreen*/
  width: 100%;
  height: 100%;
  object-fit:contain;
}

.bigi-stretch{
  grid-row: span 2;
  grid-column: span 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bigibig-stretch{
  grid-row: span 2;
  grid-column: span 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-display div img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* .videos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0.5rem;
  border: 1px dashed blue;
}
.video {
  min-height: 6rem;
  border: 1px dashed red;
}
.video:nth-child(4n),
.video:nth-child(5n),
.video:nth-child(6n) {
  min-height: 3rem;
  border: 1px dashed orange;
} */


@media only screen   
and (min-device-width : 768px)   
and (max-device-width : 1024px)  
{ .gallery-single div img{
  width: 500px;
  height: 500px;
  object-fit:cover;
  padding: 10px;
  margin: 0 auto;
  background: white;
}} 

/* @media only screen and (max-width: 2561px){
  .v-stretch{
    grid-row: span 3;
    grid-column: span 2;
  }
  
  .v-single{
    grid-row: span 2;
  }
  
  .h-stretch{
    grid-column: span 3;
  }
  
  .big-stretch{
    grid-row: span 3;
    grid-column: span 3;
  }
  
  .bigger-stretch{
    grid-row: span 3;
    grid-column: span 3;
 
  }
  
  .bigi-stretch{
    grid-row: span 3;
    grid-column: span 3;
 
  }
  
  .bigibig-stretch{
    grid-row: span 3;
    grid-column: span 2;
  
  }
} */

/* @media only screen  and (max-width: 1441px)
{  
  .v-stretch{
    grid-row: span 2;
  }

  .v-single{
    grid-row: span 1;
  }

  .h-stretch{
    grid-column: span 2;
  }

  .big-stretch{
    grid-row: span 2;
    grid-column: span 2;
  }

  .bigger-stretch{
    grid-row: span 2;
    grid-column: span 3;
  }

  .bigi-stretch{
    grid-row: span 2;
    grid-column: span 3;
  }

  .bigibig-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
} */


@media only screen   
and (min-width: 1030px)   
and (max-width: 1366px)  
{ .gallery-single div img{
  width: 500px;
  height: 500px;
  object-fit:cover;
  padding: 10px;
  margin: 0 auto;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}}  

@media only screen   
and (min-width: 1370px)  
{ .gallery-single div img{
  width: 500px;
  height: 500px;
  object-fit:cover;
  padding: 10px;
  margin: 0 auto;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;} } 

  
@media(max-width: 1025px)
{
  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  
  .v-single{
    grid-row: span 1;
  }
  
  .h-stretch{
    grid-column: span 1;
  }
  
  .big-stretch{
    grid-row: span 2;
    grid-column: span 3;
  }
  
  .bigger-stretch{
    grid-row: span 2;
    grid-column: span 3;
  }
  
  .all-stretch{
  grid-row: span 2;
  grid-column: span 4;
}
  
  .bigi-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  
  .bigibig-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
}

@media(max-width: 990px)
{
  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }

  .gallery-single{
    padding: 10px;
    max-width: 1100;
    margin: 0 auto;
    background: white;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
  }

  .gallery-single div img{
    width: 100%;
    height: 100%;
    object-fit:cover;
  }
  .v-single{
    grid-row: span 1;
  }
  .h-stretch{
    grid-column: span 2;
  }
  .big-stretch{
    grid-column: span 1;
    grid-row: span 1;
  }

  .bigger-stretch{
    grid-row: span 1;
    grid-column: span 2;
  }
  
 .all-stretch{
    grid-row: span 1;
    grid-column: span 2;
}

  .bigi-stretch{
    grid-row: span 1;
    grid-column: span 2;
  }

  .bigibig-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
} 

 @media(max-width: 769px)
 {
  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  
  .v-single{
    grid-row: span 1;
  }
  
  .h-stretch{
    grid-column: span 1;
  }
  
  .big-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .bigger-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .all-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }   
  
  .bigi-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .bigibig-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }

}

@media(max-width: 560px)
{
  .gallery-display{
    grid-template-columns: repeat(1, 1fr);}

  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  .v-single{
    grid-row: span 1;
  }

  .gallery-single{
    padding: 10px;
    max-width: 1100;
    margin: 0 auto;
    background: white;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
    grid-auto-flow: dense;
  }

  .gallery-single div img{
    width: 100%;
    height: 100%;
    object-fit:cover;
  }

  .h-stretch{
    grid-column: span 1;
  }
  .big-stretch{
    grid-column: span 1;
    grid-row: span 1;
  }

  .bigger-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
   .all-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }   

  .bigi-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }

  .bigibig-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
}

@media(max-width: 361px)
{
  .gallery-display{
    grid-template-columns: repeat(1, 1fr);}

  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  .v-single{
    grid-row: span 1;
  }

  .h-stretch{
    grid-column: span 1;
  }
  .big-stretch{
    grid-column: span 1;
    grid-row: span 1;
  }

  .bigger-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
   .all-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }   

  .bigi-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .bigibig-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
}

@media(max-width: 321px)
{

  .gallery-display{
    grid-template-columns: repeat(1, 1fr);}

  .v-stretch{
    grid-row: span 2;
    grid-column: span 1;
  }
  .v-single{
    grid-row: span 1;
  }

  .h-stretch{
    grid-column: span 1;
  }
  .big-stretch{
    grid-column: span 1;
    grid-row: span 1;
  }

  .bigger-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
   .all-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }   

  .bigi-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .bigibig-stretch{
    grid-row: span 1;
    grid-column: span 1;
  }
}

#myModal.modal{
  display: none; 
  position: fixed; 
  z-index: 1; 
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color:rgba(0,0,0,0.8);
}

/* Modal Content (image) */
.modal-content {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color:rgba(0,0,0,0.0);
}



/* Caption of Modal Image */
/* #caption {
  margin: auto;
  display: block;
  text-align: center;
  color: #ccc;
} */

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}

/* 
.gallery-grid-row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
} */

/* Create four equal columns that sits next to each other */
/* .gallery-grid-column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.gallery-grid-column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

.v-stretch{
  grid-row: span 2;
} */

/* Responsive layout - makes a two column-layout instead of four columns
@media screen and (max-width: 800px) {
  .gallery-grid-column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
/* @media screen and (max-width: 600px) {
  .gallery-grid-column {
    flex: 100%;
    max-width: 100%;
  }
} */

/*Projects*/
@media screen and (min-width: 992px) { /*Desktop*/
  .pdf {
   width:"740px"; 
   height:"800px";
       }
 }

@media screen and (max-width: 600px) { /*Mobile View for PDF*/
 .pdf {
   width: 375px;
   height: 400px;
 }
}

@media screen and (max-width: 399px) { /*Mobile View for PDF*/
  .pdf {
    width: 250px;
    height: 400px;
  }
 }

 @media screen and (max-width: 299px) { /*Mobile View for PDF*/
  .pdf {
    width: 150px;
    height: 400px;
  }
 }

 @media screen and (max-width: 199px) { /*Mobile View for PDF*/
  .pdf {
    width: 50px;
    height: 400px;
  }
 }

 .frame{
  display: none;
  
}
 
 @media(max-width: 990px)
{
  .bed{
    display: none;
  }
  
 .frame{
  display: block;
 }
 
  .frame iframe{
  height: 800px;
 }

 .frame iframe#pres{
  height: 400px;
 }
 
 .frame iframe#preshons{
  height: 450px;
 }
 
}

@media(max-width: 700px)
{

  .bed{
    display: none;
  }

  .frame{
    display: block;
   }
   
   .frame iframe{
    height: 700px;
   }

   .frame iframe#pres{
    height: 270px;
   }
   
   .frame iframe#preshons{
    height: 250px;
   }
   
}

@media(max-width: 500px)
{

  .bed{
    display: none;
  }

  .frame{
    display: block;
   }

   .frame iframe{
    height: 500px;
   }
   
   .frame iframe#pres{
    height: 180px;
   }
  
}

@media(max-width: 376px)
{

  .bed{
    display: none;
  }

  .frame{
    display: block;
   }

   .frame iframe{
    height: 360px;
    width: 180px;
   }
   
   .frame iframe#pres{
    height: 180px;
   }
   
    .frame iframe#preshons{
    height: 220px;
   }
}

@media(max-width: 321px)
{
   .frame iframe#preshons{
    height: 180px;
   }
}

.card-img-top {
  width: 100%;
  height: 15vh;
  object-fit:contain;
}

.btn-nav{
  position:sticky;
  height:100vh;
  top:0;
  z-index: 999;
  color:white;
  float:left;
}

.offcanvas{
  height: 350px;
}

.offcanvas-body{
 height: 100vh;
}

#vid{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

iframe.dynamic-vid {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

iframe.dynamic-vid html body video{
  width:50%;
  height:50%;
}

div.repo{
  background-color: #292e33;
  padding: 5px;
}

#repo-desc{
  color: white;
  font-weight: bold;
  font-size: medium; 
}

ul li{
  text-align: left;
  font-family: 'Epilogue';
  }

/*Socials*/
.social-custom{
  background-color: #cde3c4;
  padding: 20px;
  border-width: 5px;
  border-radius: 25px;
  border-style: solid;
  border-color: #107004;
}

.badge-base.LI-profile-badge iframe{
  width: 100%;
}

.twitter-button{
    text-align: center;
    width:50%; /* 70% of the parent*/
    margin:10px auto;
    
}

span.thm_stat{
  color: rgb(255, 255, 255);
  font-weight: bolder;
  margin-left:-5px;
}

#github{
  display: flex;
  justify-content: center;
  align-items: center;
}

div.content span.description{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  margin-left: -10px;
}

span.name{
  margin-left: -8px;
}

.hackthebox-noidclass > div:nth-child(2){
  text-align: center;
  justify-content: center;
  width: 50%;
}

 /* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 20px;
  width: 50px;
  text-align: center;
  text-decoration: none;
}

.fa:hover {
  opacity: 0.7;
}

/*About Me*/
.aboutmedropdown{
  background-color: #cde3c4;
  padding: 20px;
  border-width: 5px;
  border-style: solid;
  border-color: #107004;
}

button.accordion-button[aria-expanded="true"] {
  background-color:#cde3c4;
  color:black;
}

a.note{
  background-color: black;
}

#centeradiv{
    text-align: left;
    width:50%; /* 50% of the parent div*/
    margin:10px;
}

.btn{
    width: 50px;
    height: 50px;
}

#content-wrap {
    padding-bottom: 2.5rem;    /* Footer height */
    position: relative;
    min-height: 100vh;
  }

/*Footer*/
#footer {
    position: absolute;
    bottom:0;
    width:100%;
    height: 2.5rem /* Height of the footer */
 } 


/*Random elements styling*/
iframe
{ 
  min-width: 100%; 
  min-height: 100%;
  right: 0; 
  bottom: 0;
  width: auto; 
}
