html, body {
    margin: 0;
}

.lside {
    width: auto;
    background-color: #f8f8f8;
    grid-area: 1 / 1 / 8 / 2;
}

.rside {
    width: auto;
    background-color: #f8f8f8;
    grid-area: 1 / 6 / 8 / 7;
}

a {
    color: #FFFFFF;
}

#wrapper {
    display: grid;
    grid-template-columns: minmax(0px, 1fr) repeat(4, 300px) minmax(0px, 1fr);
    grid-auto-rows: minmax(0px, auto);
}

header {
    padding: 0;
    margin: 0;
}

/*.header {
    height: 336px;
    width: 1200px;
}*/

.headerL {
    display: grid;
    height: 336px;
    background-repeat: no-repeat;
    padding: 0;
    grid-area: 1 / 2 / 2 / 3;
}

.logo {
    display: grid;
    height: 316px;
    width: 316px;
    padding-bottom: 10px;
    padding-top: 5px;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 1 / 3 / 2 / 5;
}

.headerR {
    display: grid;
    height: 336px;
    width: auto;
    background-repeat: no-repeat;
    padding: 0;
    justify-self: end;
    grid-area: 1 / 5 / 2 / 6;
}

.footerL {
    display: inline-grid;
    height: 108px;
    background-repeat: no-repeat;
    padding: 0;
    grid-area: 7 / 2 / 8 / 3;
}

.logofoot {
    display: inline-grid;
    height: 90px;
    width:  90px;
    padding-bottom: 10px;
    padding-top: 5px;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 7 / 3 / 8 / 5;
}

.footerR {
    display: grid;
    height: 108px;
    background-repeat: no-repeat;
    justify-self: end;
    grid-area: 7 / 5 / 8 / 6;
}

.insta {
    display: inline-grid;
    height: 70px;
    width:  70px;
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 7 / 2 / 8 / 4;
}

.facebook {
    display: inline-grid;
    height: 70px;
    width:  70px;
    margin-bottom: auto;
    margin-top: auto;
    
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 7 / 3 / 8 / 4;
}

.linkedin {
    display: inline-grid;
    height: 70px;
    width:  70px;
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 7 / 4 / 8 / 5;
}

.twitter {
    display: inline-grid;
    height: 70px;
    width:  70px;
    margin-bottom: auto;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    grid-area: 7 / 4 / 8 / 6;
}



.pictureContainer {
    display: grid;
    width: auto;
    height: 125px;
    overflow: hidden;
    position:relative;
    grid-column-start: 2;
    grid-column-end: 6;
    
}

.pictureContainer img {
    transition: transform .5s ease-in-out;
}

.pictureContainer img:hover {
    transform: translate3d(0px, -125px, 0px);
}

.first-txt {
    position: absolute;
    color: #FFFFFF;
    top: 6px;
    left: 80px;
    font-family: Verdana, monospace;
    font-size: 65px;
}

.second-txt {
    position: absolute;
    color: #FFFFFF;
    top: 6px;
    right: 80px;
    font-family: Verdana, monospace;
    font-size: 65px;
}



.introduction {
    background-color: #e3fff9;
    justify-content: center;
    padding: 20px;
    font-family: verdana, monospace;
    display:grid;
    grid-area: 6 / 2 / 7 / 4;
}

.contentR {
    display: grid;
    grid-area: 6 / 4 / 7 / 6;
}

form {
    padding: 20px;
    display:grid;
    justify-content: flex-start;
    font-family: Verdana, monospace;
    grid-gap: 0.75rem;
    width: 100%;
}

input {
    font-size: 1rem;
    padding: 10px;
    color: #666666;
    background-color: #e3fff9;
    border: none;
}

textarea {
    font-size: 1rem;
    padding: 10px;
    color: #000000;
    background-color: #e3fff9;
    border: none;
}

input:focus {
    outline: none;
    background-color: #e3fff9;
}

textarea:focus {
    outline: none;
    background-color: #e3fff9;
}

label {
    padding: 10px;
    text-align: right;
}

#mySubmit {
    width: 10rem;
    grid-column-start: 2;
    grid-column-end: 3;
    /*please work*/
}

#designhero {
    height: 300px;
    background-image: url("maybe%20this%20also%20copy.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 2 / 4 / 6 ;
}

#photohero {
    height: 300px;
    background-image: url("boat.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 2 / 4 / 6 ;
}

#experiencehero {
    height: 300px;
    background-image: url("brandenburg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 2 / 4 / 6 ;
}

#abouthero {
    height: 300px;
    background-image: url("graffiti.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    grid-area: 3 / 2 / 4 / 6 ;
}

#navbar {
    background-color: #000000;
    grid-area: 2 / 2 / 3 / 6 ;
}

nav {
    font-weight: bold;
    font-family: Verdana, monospace;
    grid-area: 2 / 2 / 3 / 6 ;
    background-color: #000000;
    color: #FFCC99;
    position:sticky; 
    top:0;
}

nav a { 
    text-decoration: none; 
    text-align: center;
    color: #FFCC99;
    padding: 1rem 0rem;
    display:block;
    /*transition: 0.5s ease-out;*/
}

nav ul {
    list-style-type: none;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    display: flex;
    flex-flow: row nowrap;
}

nav ul li {
    width: 100%;
}

a:hover {
    color:#e3fff9;
}




