html, body {
    height: 100%;
}
body {
    margin: 0;
    background-color: rgb(51, 51, 51);
    font-family: Arial;
    color: white;
}
.flex-container {
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row {
    width: auto;
}
.flex-item {
    margin: 10px;
    line-height: 20px;
    color: white;
    font-weight: bold;
    font-size: 2em;
    text-align: center;
}

p {
    color: white;
}

a {
    color: rgb(165, 165, 193)
}

button {
    background-color: rgb(165, 165, 193);
    border: none;
    font-size: 1.2em;
    font-weight: bold;
}

button:hover {
    background-color: rgb(203, 203, 203);
    cursor: pointer;
}

a {
    text-decoration: none;
}

a:hover {
    color: rgb(203, 203, 203)
}

#container {
    position: relative;
    z-index:2;
}

#frmContact {
    padding: 1px;
}

#frmContact, #mail-status {
    padding: 8px;
    min-height: 160px;
    width:360px;
    visibility: hidden;
    background-color: rgb(51, 51, 51);
    padding: 0 12px;
    position: absolute; /* Important */
    top: 50%; /* Position Y halfway in */
    left: 50%; /* Position X halfway in */
    transform: translate(-50%,-50%); /* Move it halfway back(x,y) */
    /*width: 100px; Any width*/
    /*height: 100px;  Any height */
    /*background: blue;*/
}
#frmContact label, #frmContact .info{
    font-size:0.8em;
}
#frmContact input, #frmContact textarea{
    width:100%;
    padding: 2px 4px;
    font-size:1.2em;
}

