*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}


body{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    line-height: 44px;
    color: #8573D3;
    background-color: #C1C3F8;

}

#gallery{
    background-color: #F3F4EE;
    display: grid;
    gap: 1.44rem;
}

#gallery img {
    width: 100%;
}

@media screen and (min-width: 480px) {
    #gallery{
        grid-template-columns: 1fr;
    
    }

}   @media screen and (min-width: 900px) {
        #gallery{
            grid-template-columns: 1fr;
        }
}
nav {
   
    background-color: #E1D5F2;
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.44rem;
    justify-items: center;
   

}


