

* {
    box-sizing: border-box;
}

html,body {
    margin:0;
    padding:0;
    height: 100%;
}

.grid_form{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.grid_form label{
    width: 50%;
    text-align: left;
}

.grid_form input, select, textarea{
    width: 50%;
    margin-bottom: 10px;
}


.nav{
    grid-area: nav;
    background-image: url(../images/background1.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden; 
    padding-right: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section{
    grid-area: section;
    background-image: url(../images/background.png);
    background-size: cover;
    background-position: center;
    color:antiquewhite;
    height: 100vh;
}

.nav img{
    max-width: 65px;
    max-height: 60px;
    position: absolute;
    left:105px;
    bottom: 13px;
}

.nav nav{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav a{
    text-decoration: none;
    color: rgb(250, 227, 196);
    padding : 28px 130px;
    font-size: x-large;
}



.grid-container{
    display: grid;
    grid-template-areas:
        "nav"
        "section";
    grid-template-columns: auto;
}