*{
    margin: 0;
    padding: 0;
}

a{
    font-family: sans-serif;
    color: black;
    text-decoration: none;
}

body{
    padding: 2rem;
}

main{
    width: 100%;
    height: auto;
}

.grid-wrapper{
    height: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
}

.grid{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.img{
    width: 100%;
    height: auto;
    object-fit: cover;
    max-width: ;

}
.img:hover{
    transition: transform 0.2s ease-in-out;
    transform: scale(102%);
}

.logo{
    width: 5rem;
    height: auto;
}