.roboto-mono-regular {
    font-family: "Roboto Mono", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }


.code-cell {
  background-color: #f7f7f7;
  border: 1px solid #e1e1e8;
  border-radius: 5px;
  padding: 0 1vh;
  margin: 1vh 0;
  font-family: monospace;
  font-size: 14px;
  overflow-x: auto;
}

.code-cell pre {
  margin: 0 1vw;
  white-space: pre;
  text-align: left;
}
  
.navbar {
    font-family: "Roboto Mono";
    background-color: white;
    overflow: hidden;
    padding-left: 10vw;
    border-top: 2px solid black;
    border-bottom: 2px solid black; 
    text-align: justify;
  }

.navbar a {
    float: left;
    font-size: 16px;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

.nav-dropdown {
    float: left;
    overflow: hidden;
  }

.nav-dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }

/* Dropdown content (hidden by default) */
.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Links inside the dropdown */
.nav-dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }

.navbar a:hover, .nav-dropdown:hover .dropbtn {
    background-color: #DEE2E6;
  }

  /* Show the dropdown menu on hover */
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
  }


.main-body-elem {
    padding-left: 3vw;
    padding-right: 3vw;
}

.cv-text {
    text-align: left; 
    padding-left: 2vw;
    padding-right: 2vw;
}

.cv-text-div {
    display: flex;
    justify-content: space-between;
    padding-left: 2vw;
    padding-right: 2vw;
}

.cv-row {
    display: flex;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  
.cv-row .column-left {
    flex: 30%;
    text-align: left;
  }

.cv-row .column-right {
    flex: 70%;
    text-align: left;
  }

.about-a {
    font-size: 1.5em;
    color:black;
    text-decoration: none;
    
}

.about-a:hover {
    color: #474448;
}

.about-icon {
    font-size: 2rem;
    color:black;
    text-decoration: none;
}


.me-cards {
  width: 40%;
  display: inline-grid;
  grid-template-columns: auto auto auto;
  column-gap: 2rem;
  row-gap: 2rem;
}

.card {
  width: 200px;
  border: 1px solid #f1f1f1;
  text-align: center;
  perspective: 1000px;
}

.card-body {
  background-color: #A5A5A5;
  box-shadow: 0 4px 4px 0 rgba(0,0,0,0.2);
  height: 200px;
  width: 200px;
  display: flex;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.card:hover .card-body {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: flex;
  backface-visibility: hidden;
  min-width: 100%;
}

.card-back {
  font-size: smaller;
  color: white;
  background-color: #A5A5A5;
  transform: rotateY(180deg) translate(100%, 0);
}

.me-card {
  /* Add shadows to create the "card" effect */
  width: 15%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.me-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.me-card-container {
  padding: 2px 16px;
}

.books-container {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 1rem;
}

.book-item {
  width: 40%;
  margin: auto;
  background-color: white;
  box-shadow: 2px 2px 4px #888888;
  display: flex;
  padding: 0.5rem;
  align-items: center;
  column-gap: 3rem;
}

.book-item img {
  vertical-align: middle;
  max-width: 100px;
  padding-left: 1rem;
}

.book-item div {
  vertical-align: middle;
  text-align: left;
  font-size: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}


code {
  font-family: Consolas,"courier new";
  font-weight: 600;
  color: rgb(37, 36, 36);
  background-color: #f7f7f7;
  /* border: 1px solid rgb(37, 36, 36); */
  border-radius: 0.3vh;
  padding: 1.5px 1px;
  font-size: 105%;
}

footer { 
    position: fixed;
    text-align: center; 
    font-size: 0.8em; 
    bottom: 0;
    width: 100%;
}


html *
{ 
    font-family: "Roboto Mono"; 
}

header { 
    background: #F8F9FA;
    padding-block: 0.3vw; 
}

body { 
    margin: 0 auto; 
    background: #F2F2F2; 
}

