nav{
   background-color: black;
   a:nth-child(2){
    display: none;
    color: rgb(218, 154, 51);
   }
    
    
    
    img{
        width: 100px;
        margin-top: 15px;
        margin-left: 10px;
        
        float:left;
        
    }
    ul li{
        list-style: none;
        float: right;
        margin-right: 60px;
        margin-top: 35px;
        font-size: 30px;
        font-family: 'Impact';
        
        
        
        
       
    
    }
    a{
        text-decoration: none;
        color: rgb(218, 154, 51);
        
    
        
    }
    overflow: hidden;
}
a:hover{
    
    font-size: 35px;
    
    transition: 0.2s ease-in-out;
   
    
}
article{
    display: grid;
    
    justify-items: center;
    img{
        align-items: center;
        
        width: 90%;
        
    }
}
figure { 
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    
    img:nth-child(1){
        z-index: 1;
        width: 100%;
        
        grid-column: 1/4;
        grid-row: 1/2;
       
    }
    img:nth-child(2){
        grid-column: 1/2;
        z-index: 2;
        grid-row: 1/2;
        width: 90%;
        margin-top:60px; 
       
    }
    img:nth-child(3){
        grid-column: 2/3;
        z-index: 2;
        grid-row: 1/2;
        width: 90%;
        margin-top: 60px;
    }
    img:nth-child(4){
        grid-column: 3/4;
        z-index: 2;
        grid-row: 1/2;
        width: 90%;
        margin-top: 60px;
        
    }
    
    
}
main{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 10px;
    font-family: sans-serif;
    span{
        color: brown;
    }
    h3{
        font-size: 30px;
        color: white;
        margin-bottom: 5px;
        margin-top: 5px;
    }
    .tekst{
        line-height: 30px;
        color: white;
        margin-left: 5px;
        margin-right: 5px;
    }
    section:nth-child(1){
       
        grid-column: 1/2;
        text-align: center;
        background-color: #8099b3;
        margin-left: 30px;
        margin-right: 20px;
        
        
    }
    section:nth-child(2){
        
        grid-column: 2/3;
        text-align: center;
        background-color: #d3ae5f;
        margin-left: 20px;
        margin-right: 20px;
    }
    section:nth-child(3){
       
        grid-column: 3/4;
        text-align: center;
        background-color: #81bdb1;
        margin-left: 20px;
        margin-right: 30px;
    }
    
}
@media only screen and (max-width:480px){
nav{ 
    a:nth-child(2){
    display: block;
    font-size: 30px;
    margin: 20px 50px 20px 20px;
    background-color: black;
}
ul.dicht{
    display: none;
}
img{
    width: 50px;
    margin-right: 15px;
    margin-bottom: 10px;
    float: right;
}
ul li{
    width: 100%;
    text-align: left;
    font-size: 15px;
}
}
a:hover{
    display: none;
}
figure{
   
    
    img:nth-child(2){
        margin-bottom: 50px;
    }
    img:nth-child(3){
        margin-bottom: 50px;
    }
    img:nth-child(4){
        margin-bottom: 50px;
    }

}
main{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr;
    text-align: center;
    .tekst{

        line-height: 10x;
    }
    section:nth-child(1){
        margin-left: 0px;
        margin-right: 0px;
        grid-row: 1/2;
        grid-column: 1/2;
}
section:nth-child(1){
    margin-left: 0px;
    margin-right: 0px;
    grid-row: 2/3;
    grid-column: 1/2;
}
section:nth-child(1){
    margin-left: 0px;
    margin-right: 0px;
    grid-row: 3/4;
    grid-column: 1/2;
}
}
}