.base{
    background-color: #f5f0f0;
  }
  
  .row {
    display: flex;
  }
  
  .column_left{
    flex: 30%;
    padding: 20px;
    height: 100%; 
  }
  
  .column_right{
    flex: 70%;
    padding: 20px;
    height: 100%; 
  }

  img {
    border-radius: 10%;
  }

  .card {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 50%;
    border-radius: 5px;
  }
  
.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

  .container {
    align-items: center;
    padding: 2px 16px;
  }

  #mainMenu {
    list-style-type: none;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    border-radius: 15px
}

#mainMenu li {
	float: left;
    border-right:1px solid #bbb;
}

#mainMenu li:last-child {
    border-right: none;
}

#mainMenu li a:hover:not(.active) {
    background-color: #111;
}

#mainMenu a {
	display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.active {
    background-color: #F60467;
}

.headercard {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 100%;
    border-radius: 7px;
    padding-bottom: 5px;
  }

.heading{
    background-color: #000;
    padding-left: 20px;
    color: #E5E5E5;
}

.mainText {
    list-style-image: url('https://www2.atmos.umd.edu/~chepurin/STUFF/bullets/sqred.gif');
  }

.items {
    padding-left: 11px;
}
a:link {
    color: #0000ff;
}

.researchHeaderCard {
    align-self: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 95%;
    border-radius: 7px;
    padding-bottom: 5px;
  }

.researchHeading{
    background-color: #000;
    padding-left: 20px;
    color: #E5E5E5;
}

.contactMeCard {
    align-self: center;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 95%;
    border-radius: 7px;
    border-style: solid;
    border-width: thin;
  }

#imageBox{
    overflow: hidden;
}

#imageBox img{
    transition: all ease 1s;
}

#imageBox:hover img{
    scale: 1.02;
}