#bodyp1{
    background: linear-gradient(42deg, rgba(99,66,32,1) 0%, rgb(255, 243, 230) 100%);
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#bodyp2{
    background: linear-gradient(42deg, rgba(99,66,32,1) 0%, rgb(255, 243, 230) 100%);
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
#bodyp3{
    background: linear-gradient(42deg, rgba(99,66,32,1) 0%, rgb(255, 243, 230) 100%);
    font-family: "Changa", sans-serif;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
nav{
    grid-column: 2/4;
    grid-row:1/2;
    margin-top: 80px;
    position: sticky;
}
nav li{
    margin-right: auto;
    text-align: center;
    float: right;
}
nav a{
    position: relative ;
    text-decoration: none;
    color:rgb(255, 232, 208) ;
    font-family: "Changa", sans-serif;
    font-size: 25px;
    transition: all 300ms ease;
    cursor: pointer;
    margin-right:20px ;
    font-weight:600;
  }
  nav a:hover {
    color: rgb(255, 255, 255);
    transform: skew(10deg);}
.actief {
    color: rgb(255, 255, 255);
  }
  nav > a:nth-child(1){
    display: none; 
    
}

#headerp1{ 
    grid-column: 1/4;
    grid-row:1/2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
#titelp1{
grid-column:2/5;
grid-row: 2/3;
font-size: 200px;
padding-top:30px ;
font-family: "Bodoni MT Poster Compressed V1";
color: rgb(255, 232, 208) ;
opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.5s; 
}
#subtitelp1{
    grid-column:2/5;
grid-row: 2/3;
margin-top: auto;
margin-left: auto;
color: rgb(255, 232, 208) ;
font-family: "Source Sans 3", sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  padding-right: 45px;
  opacity: 0; 
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.7s; 
}
#introimg{
    z-index: -1;
    margin: 55px;
    grid-column: 1/6;
  grid-row: 1/2;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  
}#introtekst{
    grid-column: 2/5;
    grid-row: 2/3;
    font-size: 30px;
    text-align: center;
    font-family: "Changa", sans-serif;
    font-weight: 400;
    margin-bottom: 10%;
    color: #ffffff;
    opacity: 0;
    animation: fadeIn 1.7s ease-out forwards;
    animation-delay: 0.5s; 
}
#button1 {
    grid-column:3/4;
    grid-row: 2/3;
    transition: all .5s ease;
    font-family:"Source Sans 3", sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    font-size: 17px;
    border: 3px solid white;
    background-color : transparent;
    padding: 10px;
    outline: none;
    border-radius: 40px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    text-decoration: none;
    color:rgb(255, 255, 255);
    opacity: 0;
    animation: fadeIn 1.7s ease-out forwards;
    animation-delay: 0.5s; 
  }
  #button1:hover {
    color: rgb(121, 87, 61);
    background-color: #fff;
  }
  #figurep1{
    grid-row: 3/4;
    grid-column: 1/6;
    margin-left: 5%;
    margin-bottom: 5%;
    margin-top: 5%;
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 0.5s; 
}
#figurep1 img{
    width:fit-content;
    margin-left: 1%;
    display: inline-block;
    animation: bounce 2s infinite ease-in-out alternate;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
#figurep1 img:nth-child(even) {
    animation: bounce-down 2s infinite ease-in-out alternate;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-20px); 
    }
}

@keyframes bounce-down {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(20px);
    }
}
@keyframes side {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateX(20px);
    }
}

footer {
    background: #41281b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: "Changa", sans-serif;
}
.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}
.footer-section {
    margin: 10px;
}
.footer-section h4 {
    margin-bottom: 10px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin: 5px 0;
}
.footer-section a {
    color: #fff;
    text-decoration: none;
}
.footer-section input {
    padding: 8px;
    width: 80%;
    margin-top: 5px;
}
.footer-section button {
    padding: 8px 15px;
    margin-top: 5px;
    background: #c6b5a7;
    border: none;
    color: white;
    cursor: pointer;
}
.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding: 10px;
}
input {
    display: block;
    margin: 10px;
    padding: 10px;
    border: 2px solid #cda284; 
    border-radius: 20px;
    background-color: transparent; 
    outline: none;
    font-size: 16px;
    text-align: center;
    color: #ffffff;
  }
footer{
    grid-row: 4/5;
    grid-column:1/6 ;
}
#headerp2{ 
    grid-column: 2/5;
    grid-row:2/3;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    margin-left: auto;
}
#titelp2{
    grid-column:2/6;
    grid-row: 1/2;
    text-align: center;
    font-size: 90px;
    padding-top:30px ;
    font-family: "Bodoni MT Poster Compressed V1";
    color: rgb(121, 87, 61);
    opacity: 0;
        animation: fadeIn 1.2s ease-out forwards;
        animation-delay: 0.5s; 
    }
#article1p2{
margin-top: 30px;
grid-row: 3/4;
grid-column: 1/6;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
opacity: 0;
animation: fadeIn 1.2s ease-out forwards;
animation-delay: 1.0s; 
}
#article1p2 :nth-child(1){
    grid-column: 1/3;
    grid-row: 1/2;
    margin: 20px;
    margin-right: 40px;
    font-family: "Changa", sans-serif;
    font-size: 20px;
   line-height: 1.5;
}
#article1p2 :nth-child(2){
    grid-column: 1/2;
    grid-row:2/3;
    width: 70%;
    margin-left: auto;
    margin-right: 10px;
}
#article1p2 :nth-child(3){
    grid-column:2/3;
    grid-row:2/3;
    width: 70%;
    
}
#article1p2 :nth-child(4){
    grid-column:1/3;
    grid-row:3/4;
    margin: 20px;
    font-family: "Changa", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-right: 40px;
}
#article1p2 :nth-child(5){
    grid-column:3/4;
    grid-row:1/3;
    margin: 20px;
    font-family: "Bodoni Moda SC", serif;
    font-weight: 400;
    font-style: italic;
    font-size: 115px;
    text-align: center;
    opacity: 60%;
    animation: bounce-down 2s infinite ease-in-out alternate;
}
#article1p2 :nth-child(6){
    grid-column:3/4;
    grid-row:1/3;
    margin: 20px;
    font-family: "Bodoni Moda SC", serif;
    font-weight: 700;
    font-style: italic;
    font-size: 60px;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    font-size: 110px;
    opacity: 70%;
    animation: bounce-down 2s infinite ease-in-out alternate;
}
#article1p2 :nth-child(7){
    grid-column:3/4;
    grid-row:1/3;
    margin: 20px;
    font-family: "Bodoni Moda SC", serif;
    font-weight: 900;
    font-style: italic;
    font-size: 60px;
    margin-top: auto;
  text-align: center;
  font-size: 105px;
  opacity: 80%;
  animation: bounce-down 2s infinite ease-in-out alternate;

}
#article1p2 :nth-child(8){
    grid-column:3/4;
    grid-row:1/4;
    width: 80%;
    z-index: 2;
    margin-top: auto;
    margin-left: auto;
    margin-right: 30px;
    
}

#article2p2{
    margin-top: 10%;
    grid-row:4/5;
    grid-column: 1/5;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 2.0s;
}
#article2p2 :nth-child(1){
    font-size: 250px;
    grid-row: 1/2;
    grid-column: 1/2;
    font-family: "Libre Caslon Text", serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 70px;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}
#article2p2 :nth-child(2){
    grid-row: 1/2;
    grid-column: 1/2;
    width: 20%;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
    animation: bounce 2s infinite ease-in-out alternate;
    
}
#article2p2 :nth-child(3){
    grid-row: 2/4;
    grid-column: 1/2;
  
}
#article2p2 :nth-child(4){
    text-align: center;
    grid-column: 2/4;
    grid-row: 1/2;
    font-family: "Changa", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-right: 20px;
}
#article2p2 :nth-child(5){
    text-align: center;
    grid-column: 2/4;
    grid-row: 2/3;
    font-family:"Libre Caslon Text", serif;
    font-size: 29px;
    line-height: 1.5;
    margin-right: 20px;
}
#article2p2 :nth-child(6){
    text-align: center;
    grid-column: 2/4;
    grid-row: 3/4;
    font-family: "Changa", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-right: 20px;
}
#figure1p2{
    grid-column: 5/6;
    grid-row: 4/5;
 margin-top: 20%;
 margin-left: 20px;
 
}
#figure1p2 :nth-child(1){
    transform: rotate(-30deg);
}
#figure1p2 :nth-child(2){
    transform: rotate(20deg);
    z-index: 2;
}
#figure1p2 :nth-child(3){
    transform: rotate(-5deg);
    width: 70%;
}
#figure1p2 :nth-child(4){
    transform: rotate(35deg);
    z-index: 3;
}
#article3p2{
    grid-row: 5/6;
    grid-column: 1/6;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 5%;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 3.0s;
}
#article3p2 :nth-child(1){
    grid-column: 1/2;
    grid-row: 1/2;
    font-family: "Changa", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    padding: 20px;
}
#figure{
    margin-top: 5%;
    grid-column: 1/2;
    grid-row: 2/3;
    
}
#figure :nth-child(1){
    animation: bounce-down 2s infinite ease-in-out alternate;
    margin-bottom: 20px;
}

#figure :nth-child(2){
    animation: bounce 2s infinite ease-in-out alternate;
}

#figure :nth-child(3){
    margin-left: 20px;
    margin-top: 20px;
    animation: bounce-down 2s infinite ease-in-out alternate;
}

#article3p2 :nth-child(3){
    grid-column: 1/2;
    grid-row: 2/3;
    font-family: "Changa", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-top: auto;
    margin-bottom: 4%;
    margin-left: 20px;
}
#article3p2 :nth-child(4){
    grid-column: 2/3;
    grid-row: 1/3;
    font-family: "futura-pt", sans-serif;
font-weight: 400;
font-style: normal;
    line-height: 1.5;
    font-size: 170px;
    margin-left: 10%;
    opacity: 60%;
    animation: bounce 2s infinite ease-in-out alternate;
}
#article3p2 :nth-child(5){
    grid-column: 2/3;
    grid-row: 1/3;
    font-family: "futura-pt", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.5;
    font-size: 155px;
    margin-left: 10%;
    margin-top: 20%;
    margin-bottom: auto;
    opacity: 70%;
    animation: bounce 2s infinite ease-in-out alternate;
}
#article3p2 :nth-child(6){
    grid-column: 2/3;
    grid-row: 1/3;
    font-family: "futura-pt-bold", sans-serif;
font-weight: 700;
font-style: normal;
    font-size: 20px;
    line-height: 1.5;
    font-size: 150px;
    margin-left: 10%;
    margin-top: 40%;
    margin-bottom: auto;
    opacity: 80%;
    animation: bounce 2s infinite ease-in-out alternate;
}
#article3p2 :nth-child(7){
    grid-column: 2/3;
    grid-row: 2/3;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
    z-index: 4;
}
#footerp2 {
    background: #41281b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    font-family: "Changa", sans-serif;
    grid-row: 6/7;
}

#form h2{
    font-size: 40px;
}
form label {
    font-weight: bold;
}
form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
#bericht{
    background: transparent;
}
#abstrcontact{
    grid-column: 3/4;
    grid-row: 3/4;
    margin-top: auto;
    margin-bottom:auto;
    margin-left:15%;
    opacity: 0;
animation: fadeIn 1.4s ease-out forwards;
animation-delay: 0.5s;
}
#abstrcontact img{
    width: 80%;
    
}
form button {
    background: #322400;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10Px;
}
form button:hover {
    background:rgba(99,66,32,1);;
}

#info {
    text-align: center;
    background-color: #c5ab83;
    line-height: 2;
    margin-left: 40px;
    margin-right: 40px;
    grid-row: 3/4;
    grid-column: 4/6;
    margin-top: auto;
    margin-bottom: auto;
    font-family: "Changa", sans-serif;
    font-size: 30px;
    opacity: 0;
animation: fadeIn 1.4s ease-out forwards;
animation-delay: 0.5s;
}
#headerp3{
    grid-row: 2/3;
    grid-column: 2/5;
    font-size: 50px;
    font-family: "Bodoni MT Poster Compressed V1";
    color: rgb(121, 87, 61);
    opacity: 0;
        animation: fadeIn 1.2s ease-out forwards;
        animation-delay: 0.5s; 
            text-align: center;
            padding: 40px 20px;
}
#form{
grid-row:3/4;
grid-column: 1/3;
margin-left: 30px;
opacity: 0;
animation: fadeIn 1.4s ease-out forwards;
animation-delay: 0.5s;
    padding: 20px;
    border-radius: 10px;
    gap: 15px;
}

@media only screen and (max-width: 500px) {
    #bodyp1{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr ;}
    nav{
        grid-column: 3/4;
        grid-row: 1/2;
        margin-left: auto;
        margin-bottom: auto;
        overflow: hidden;
    margin-top: 20px;}
    nav > a:nth-child(1){
        display: block;
        font-size: 30px; 
        margin: 20px 50px 20px 20px;
        color: rgba(99,66,32,1);
}
        

nav ul.menudicht {
    display: none; } 
    nav ul li {
        text-align: center;

    }
  nav ul li {
    background-color: rgba(99,66,32,1);
    width: 100%;
    height: 150%;
  }
    #headerp1{ 
        grid-column: 1/4;
        grid-row:1/2;
        display: grid;
        
        grid-template-rows: auto 1fr;
    }
    #titelp1{
        grid-column:2/4;
        grid-row: 1/2;
        font-size: 40px;
        color: rgba(99,66,32,1) ;
        margin-left: auto;
        margin-right: auto;
    }    
#introimg{
    grid-column: 1/4;
    grid-row: 2/3;
    width: 90%;
    margin: 20px;
}
#subtitelp1{
    grid-column:2/4;
    grid-row: 2/3;
    color: rgba(99,66,32,1);
    font-size: 9px;
    margin-top: 0px;
    margin-bottom: auto;
    padding-right: 40px;
}
#introtekst{
    grid-column: 1/4;
    grid-row: 3/4;
    font-size: 12px;
    text-align: center;
   margin-left: 5%;
   margin-right: 5%;
}
#button1 {
    grid-column:2/3;
    grid-row:3/4;
    font-size: 9px;
}
#figurep1{
    grid-row:4/5;
    grid-column: 1/4;
    display: grid;
grid-template-columns:1fr 1fr 1fr;
grid-template-rows: 0.3fr 0.3fr;}
    #figurep1 :nth-child(1){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce 2s infinite ease-in-out alternate;
        margin-bottom: 0px;
    }
    #figurep1 :nth-child(2){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce 2s infinite ease-in-out alternate;
    }
    #figurep1 :nth-child(3){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce 2s infinite ease-in-out alternate;
    }
    #figurep1 :nth-child(4){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce 2s infinite ease-in-out alternate;
    }
    #figurep1 :nth-child(5){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce 2s infinite ease-in-out alternate;
    }
    #figurep1 :nth-child(6){
        width: 70%;
        margin-left: auto;
        margin-right: auto;
        animation: bounce-down 2s infinite ease-in-out alternate;
    }
    footer{
        grid-row: 5/6;
    }
    #bodyp2{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr ;}
        #headerp2{ 
            grid-column: 1/4;
            grid-row:1/2;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr ;
        }
        #titelp2{
            grid-column:2/3;
            grid-row: 1/2;
            text-align: center;
            font-size: 20px;
            padding-top:30px ;
            }
            #article1p2{
                margin-top: 20px;
                grid-row: 2/3;
                grid-column: 1/4;
                display: grid;
                grid-template-columns: 1fr 1fr;
                }
                #article1p2 :nth-child(1){
                    grid-column: 1/4;
                    grid-row: 1/2;
                    margin-right:40px;
                    margin-left:40px;
                    font-size: 10px;
                   
                }
                #article1p2 :nth-child(2){
                    grid-column: 1/2;
                    grid-row:2/3;
                    width: 70%;
                    margin-left: auto;
                    margin-right: 20px;
                }
                #article1p2 :nth-child(3){
                    grid-column:2/3;
                    grid-row:2/3;
                    width: 70%;
                }
                #article1p2 :nth-child(4){
                    grid-column:1/3;
                    grid-row:3/4;
                    font-size: 10px;
                    margin-right: 40px;
                    margin-left: 40px;
                }
                #article1p2 :nth-child(5){
                    grid-column:1/3;
                    grid-row:4/5;
                    margin-left: auto;
                    margin-right: auto;
                    margin-bottom: 50%;
                    font-size: 65px;
                }
                #article1p2 :nth-child(6){
                    grid-column:1/3;
                    grid-row:4/5;
                    margin-bottom: 35%;
                    margin-top: auto;
                    margin-left: auto;
                    margin-right: auto;
                    font-size: 60px;
                }
                #article1p2 :nth-child(7){
                    grid-column:1/3;
                    grid-row:4/5;
                    margin-top:auto;
                    margin-left: auto;
                    margin-right: auto;
                    margin-bottom:20% ;
                    font-size: 55px;
                }
                #article1p2 :nth-child(8){
                    grid-column:1/3;
                    grid-row:4/5;
                    width: 50%;
                    z-index: 2;
                    margin-top: auto;
                    margin-left: auto;
                    margin-right: auto;
                }
                #figure1p2{
                    grid-column:1/4;
                    grid-row: 3/4;
                    margin-top: 30px;
                 margin-left: 50px;
        
                }
                #figure1p2 :nth-child(1){
                    width: 20%;
                }
                #figure1p2 :nth-child(2){
                    width: 20%;
                }
                #figure1p2 :nth-child(3){
                    width: 20%;
                }
                #figure1p2 :nth-child(4){
                    width: 20%;
                }
                #article2p2{
                    margin-top: 5%;
                    grid-row:4/5;
                    grid-column: 1/4;
                    display: grid;
                    grid-template-columns: 1fr 1fr ;
                }
                #article2p2 :nth-child(4){
                    text-align:left ;
                    grid-column: 1/3;
                    grid-row: 1/2;
                    font-size: 10px;
                    margin-right: 40px;
                    margin-left: 40px;
                }
                #article2p2 :nth-child(5){
                    grid-column:1/3;
                    grid-row: 2/3;
                    font-family:"Libre Caslon Text", serif;
                    font-size: 10px;
                    margin-right: 40px;
                    margin-left: 40px;
                }
                #article2p2 :nth-child(6){
                    text-align:left ;
                    grid-column: 1/3;
                    grid-row: 3/4;
                    font-size: 10px;
                    margin-right: 40px;
                    margin-left: 40px;
                }
                #article2p2 :nth-child(1){
                    grid-column: 1/2;
                    grid-row: 4/5;
                    font-size: 160px;
                }
                #article2p2 :nth-child(2){
                    grid-column: 1/2;
                    grid-row: 4/5;
                    font-size: 60px;
                    width: 25%;
                    margin-right: 40px;
                }
                #article2p2 :nth-child(3){
                    grid-row: 4/5;
                    grid-column: 2/3;
                   width: 100%;
                  
                }
                #article3p2{
                    grid-row: 5/6;
                    grid-column: 1/4;
                }
                #article3p2 :nth-child(1){
                    grid-column: 1/3;
                    grid-row: 1/2;
                    font-size: 10px;
                    margin-right: 40px;
                    margin-left: 40px;
                    padding: 0px;
                  
                } 
                #article3p2 :nth-child(4){
                    grid-column: 1/3;
                    grid-row: 2/3;
                    font-size: 100px;
                    margin-left:auto;
                    margin-right: auto;
                    
                }
                #article3p2 :nth-child(5){
                    grid-column: 1/3;
                    grid-row: 2/3;
                    font-size: 90px;
                    margin-top: 20%;
                    margin-left:auto;
                    margin-right: auto;
                    
                }
                #article3p2 :nth-child(6){
                    grid-column: 1/3;
                    grid-row: 2/3;
                    font-size: 90px;
                    margin-left:auto;
                    margin-right: auto;
                    margin-top:40% ;
                }
                #article3p2 :nth-child(7){
                    grid-column: 1/3;
                width: 60%;}
                #article3p2 :nth-child(3){
                    grid-column: 1/3;
                    grid-row: 3/4;
                    font-size: 10px;
                    margin-top: 5%;
                    margin-right: 40px;
                    margin-left: 40px;
                }
                #figure{
                    grid-column: 1/3;
                    grid-row: 4/5;
                    display: grid;
                    grid-template-columns: 1fr 1fr 1fr;
                    margin-bottom: 5%;
                }
                #figure :nth-child(1){
                    width: 40%;
                    margin-bottom: 0px;

                }
                
                #figure :nth-child(2){
                    width:80%;
                    grid-column: 2/3;
                    grid-row: 1/2;
                    margin-left: auto;   
                }
                #figure :nth-child(3){
                    width: 80%;
                    margin-left: 0px;
                    margin-top: 0px;
                    grid-column: 3/4;
                    grid-row: 1/2;
                    margin-left: auto;
                    margin-right: auto;
                }
#form{
  grid-column: 1/6;  
  margin-left: 40px;
  margin-right: 40px;
}
#abstrcontact{
    grid-column:2/5;
    grid-row: 4/5;
    margin-top: auto;
    margin-bottom:auto;
    margin-left:5%;
    margin-right: auto;
    width: 110%;
}
#info {
    grid-row:5/6;
    grid-column: 1/6;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}
}