body{
    background-image: url(starrynight2.0.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.box {
    max-width: 1000px;
    max-height: max-content;
    margin: 75px auto;
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 275px ;
    font-style: color= white;
}

.box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
    grid-row: 1 / 2;
    grid-column:1 / 3 ;
    height: max-content;
}


nav {
    border: white 2px solid;
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    height: max-content;
}

main {
    border: white 2px solid;
     grid-row: 2 / 3;
    grid-column: 2 / 3;
     height: max-content;
}

footer {
    border: white 2px solid;
     grid-row: 3 / 4;
    grid-column: 1 / 3;
}