p {
    font-family: 'Courier New', Courier, monospace;
    font-size: 25px;
    font-weight: bold;
}

.navigation {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    position: fixed;
    z-index: 1000;
}

.navigation-item {
    position: relative;
    
    background-color: rgb(13, 116, 82);
    list-style: none;
    width: 25%;
    height: 100px;
    text-align: center;
    justify-content: center;
    line-height: 100px;
}
.navigation-item a{
    text-decoration: none;
}

.grid-container{

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-self: center;
    width: 900px;
    margin-left: auto;
    margin-right: auto;
   
    padding-top: 100px;
    gap: 25px;
}


#item1{
    grid-row: 1/2;
    grid-column: 1/2;
}

#item2{
    grid-row: 1/1;
    grid-column: 2/3;
}

#item3{
    grid-row: 2/3;
    grid-column: 1/2;
}

#item4{
    grid-row: 2/3;
    grid-column: 2/3;
}

.grid-item{
    background-color: blanchedalmond;
    justify-content: center;
    align-items: center;   
    width: 400px;
    height: 500px;
    box-shadow: 2px 5px 10px rgb(75, 120, 75);
    
}

.grid-item:hover {
    transform: translateY(-10px);
    
}

.grid-item img{
   width: 100%;
   height: 60%;
}

.footer{
    
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
    width: 1000px;
    height: 200px;
    background-color: rgba(0, 51, 90, 0.61);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    box-shadow: 2px 5px 5px rgba(7, 56, 93, 0.994);
    color: white;

}
