.container {
    display: inline-block;
    width: 20%;
    height: 200px;
    position: relative;
    top: 0px;
    left: -1px;
    text-align: center;
    padding: 10px;
    vertical-align: top;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.buttoncontainer {
  display: inline-block;
  width: 20%;
  height: 200px;
  position: relative;
  top: 0px;
  text-align: center;
  padding: 10px;
  vertical-align: top;
  font-family: 'Lato', sans-serif;
  border-radius: 5px;
}

button {
    width: 100%;
    height: 33%;
    font-size: 24px;
    float: left;
    border-radius: 5px;
    margin: 2px;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

button:focus {
  outline: 0;
}

img {
  display: inline-block;
  width:4%;
  height: auto;
  position: relative;
  top: 90px;
  
}

.individual {
  width: 100%;
  height: 83%;
  text-align: left;
  border-radius: 0px 0px 5px 5px;
  box-shadow: 0 0 5px 5px #d1f3fb;
  background: #d1f3fb;
}

.group {
  width: 100%;
  height: 83%;
  text-align: left;
  border-radius: 0px 0px 5px 5px; 
  box-shadow: 0 0 5px 5px #f9d6b9;
  background: #f9d6b9;
}

.organization {
  width: 100%;
  height: 83%;
  text-align: left;
  border-radius: 0px 0px 5px 5px; 
  box-shadow: 0 0 5px 5px rgb(209, 209, 209);
  background: rgb(209, 209, 209);
}

/* Popup container */
.popup {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 100%;
    text-decoration: underline;
  }
  
  /* The actual popup (appears on top) */
  .popuptext {
    position: relative;
    top: 20px;
    left: 200px;
    display: none;
    height: auto;
    text-align: left;
    padding: 10px;
    z-index: 1;
    width: 50%;
    font-family: lato;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  
  /* Toggle this class when clicking on the popup container (hide and show the popup) */
  .show {
    display: block;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
  }
  
  /* Add animation (fade in the popup) */
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }