*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    margin: 0;
    padding:0;
    background-color: #1f233f;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

body > header {
    background-color: rgba(17, 18, 32, 1);
    height: 5.0rem;
    line-height: 5.0rem;
    margin-bottom: 2.0rem;
    color: white;
}

body > header > span {
    font-weight: bolder;
    cursor: pointer;
}

section {
    width: 40.0rem;
    height: 40.0rem;
    padding: 2.0rem;
    margin: 0 auto;
}

.home {
    background-color: aqua;
}

.project1 { 
    background-color: red;
}

.project2 { 
    background-color: green;
}

.project3 { 
    background-color: blue;
}

.project4 { 
    background-color: magenta;
}

.contact-me, .contact-me2 {
    margin: 0  auto;
    width: 75%;
    background-color: rgba(17, 18, 32, 0.7);
    padding: 2.0rem 5.0rem;
    text-align: left;
    margin-top: 2.0rem;
    min-height: 30.0rem;
    color: white;
    display: flex;
    flex-direction: column;
}

.contact-me2 {
    display: none;
}

input[type=text], textarea {
    font-size: 120%;
    color: white;
    background-color: rgba(255, 255, 255, 0.3);
}

.name-email{
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: -1.25rem;
}

.name-email p:first-child{
    flex-grow: 2;
}

.name-email p:last-child{
    flex-grow: 2;
}


label{
    line-height: 2rem;
}

.contact-me h1
{
    font-size: 200%;
}
.contact-me p {
    margin: 1.0rem;
}
.message, input[type=text] {
    width: 100%;
}
.submit {
    padding: 1.0rem 1.25rem ;
    background-color: #f26c4f;
    color: white;
    border: none;
    border-bottom: 6px solid #d96147;
    cursor: pointer;
}

.hideAll {
    display: none;
}