.row{
    display: flex;
    justify-content: center;
}

#frontPic {
    max-width: 40%;
}

body{
    background-color: pink;
}

.containLeft{
    height: 110px;
    width: 30%;
    border: 1px solid white;
    background-color: rgba(255, 0, 0, 0.738);
    margin-left: auto;
    display: flex;
    border-radius: 8px;
    justify-content: center;
}

.containLeftBtn, .containRightBtn{
    display: flex;
    justify-content: center;
    width: 80px;
}

.containMid{
    height: 110px;
    width: 40%;
    border: 1px solid white;
    background-color: rgb(138, 103, 213);
    border-radius: 9%;
    
    text-decoration: underline white;
   
    display: flex;
    justify-content: center;
    align-content: center;   
    margin: 0%;
    padding: 0%;
}

.containRight{
    height: 110px;
    width: 30%;
    border: 1px solid white;
    background-color: rgba(53, 219, 53, 0.731);
    margin-right: auto;
    border-radius: 8px;
    display: flex;
    justify-content: center;
}

.contentButton{
    outline: none;
    border: none;
    background-color: inherit;
    font-size: xx-large;
    color: white;
    font-weight: bold;
}

.imageLeft{
    
}

.rowBtn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


/* @media screen 600px () */
/*OLD PLUS BUTTON IMG ONLY FOR PREVIOUS VERSION*/
.plusButton img{
    width:100px;
    justify-self: center;
    align-self: center;
    margin: auto;
    background-color: rgb(36, 207, 36);
    padding: 0%;
}

/* OLD MINUS BUTTON IMG ONLY FOR PREVIOUS VERSION
.minusButton img{
    width: 100px;
    justify-self: center;
    align-self: center;
    margin: auto;
    background-color: rgb(251, 78, 78);
    padding: 0%;
}
*/


/*TEST SECTION*/

.testLeft{

}

.icon{
    width: 10px;
}

/* Button for */
/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    outline: none;
    border: none;
    background-color: inherit;
    font-size: xx-large;
    color: white;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.8;
  }
  
  /* The popup form - hidden by default */
  .form-popup {
    display: none;
    position: fixed;
    margin: 0;
    top: 10%;
    border: 3px solid #f1f1f1;
    z-index: 9;
    width: 300px;
    text-align: center;
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif
  }
  
  /* Add styles to the form container */
  .form-container {
    max-width: 300px;
    padding: 10px;
    background-color: white;
  }
  
  /* Full-width input fields */
  .form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 0 22px 0;
    border: none;
    background: #f1f1f1;
  }
  
  /* When the inputs get focus, do something */
  .form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
  }
  
  /* Set a style for the submit/login button */
  .form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
  }
  
  /* Add a red background color to the cancel button */
  .form-container .cancel {
    background-color: red;
  }
  
  /* Add some hover effects to buttons */
  .form-container .btn:hover, .open-button:hover {
    opacity: 1;
  }

