/* General */

html{ 
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100dvh;
}

body{ 
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: 0;
    max-height: 0;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

ul, li{
    list-style: none;
    padding: 0;
    margin: 0;
}

#PMHolder{
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    background-image: url("images/PMBG.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#NameEmail{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #b7b7b7;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
}

#PMName p{
    font-size: 1.2em;
    line-height: 50px;
    padding: 0;
    margin: 0;
    padding: 0 20px;
    color: #ffffff;
     background-color: #757474;
  white-space: nowrap;
}

#PMEmail p{
    font-size: 1.2em;
    line-height: 50px;
    padding: 0;
    margin: 0;
    padding: 0 20px;
    background-color: #ffffff;
      white-space: nowrap;
}


@media screen and (max-width: 1000px) {

#NameEmail{
    margin-top: 0;
    bottom: 40px;
}

#PMName, #PMEmail{
    font-size: 1.0em;
}

}


@media screen and (max-width: 600px) {

#NameEmail{
    flex-direction: column;
  
}

#PMName, #PMEmail{
    font-size: 1.0em;
    line-height: 40px;
}

}

