*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    background: blue;
    color: wheat;
}
nav {
    background-color: antiquewhite;
    text-align: center;
    position: fixed;
    width: 100%;
    padding: 7px;
}
nav ul li {
    display: inline;
    margin-right: 20px;
}

#banner {
background-image: url("../img/Screenshot\ 2025-10-28\ at\ 1.38.58\ PM.png");

background-size: cover;
background-position: top center;
background-attachement: fixed;
background-repeat: no-repeat;
width: 100%;
height: 90vh;
}
article{
    display: grid;
    grid-template-columns: repeat( 1, 1fr);
}
 article img {
    width: 100%;
 }

 @media screen and (min-width:1024px) {
 article{
    grid-template-columns: repeat( 3, 1fr);
}   
    
 }
