

* {
    box-sizing: border-box;
}

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



.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;
}

.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;
}

.strategies{
    display: flex;
    flex-wrap: wrap;
    padding: 55px;
    gap: 30px;
}

.strategie{
    position: relative;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:beige;
    transition: transform 0.3s ease;
    color:black;   
}
.strategie h2{
    margin: 7px;
}

.strategie:hover{
    background-color:aqua;
    transform: scale(1.1);
}



.strategie img{
    width: 350px;
    display: inline-block;
    overflow: hidden;
}

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