/*:root {
  here I am defining any variables

}*/




.meettherats{
  display: flex;
  justify-content: space-between;
}

.ratsbox{
  width: 40%;
  max-width: 330px;
  /*width: 100%;*/
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.minipic {
  width: 100px;
  border-radius: 50px;
  margin: 5px;
}


.selected{
  opacity: .5;
}

.profile{
  width: 60%;
  flex-grow: 1;
  margin-left: 20px;
}

.upperprofile{
  margin-top: 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: flex-end;
  justify-content: right;
}

.upperprofile_text{
  width:20%;
  flex-grow: 1;
  min-width: 140px;
}

.upperprofile_image{
  /*flex-grow: 1;*/
  width: 50%;
  min-width: 200px;
  max-width: 400px;
  margin-left:15px;
}

.bigpic{
  width: 100%;
  border-radius: 20px;
}

.lowerprofile{
}


                /* mobile formatting section */
                @media screen and (max-width: 640px){
                  

                  .ratsbox{
                    width: 100%;
                    display: flex;
                    flex-wrap: wrap;
                    align-content: flex-start;
                  }
                  
                  .minipic {
                    width: 50px;
                    border-radius: 25px;
                    margin: 5px;
                  }
                  
                  .profile{
                    width: 100%;
                  }
                      
                  .upperprofile_text{
                    width:100%;
                  }
                  
                  .upperprofile_image{
                    width: 100%;
                    margin: 0;
                  }
                }/*ending the mobile view*/