* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html{ 
width: 100%;
overflow-x: hidden;

}
body {
color: rgb(0, 0, 0);
background-color: rgb(255, 255, 255);
}

#container {
    padding: 10px;
    display: grid;
    /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; */
    /*grid-template-columns: repeat(5,1fr);*/
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* limit width on TV's...*/
    max-width: 3000px;
    /* align in the middle*/ 
    position: relative;
    margin: 0 auto; 
}

.grid-item {
    background-color: rgb(255, 255, 255);
    min-height: 300px;
}
/* individual tiles*/
.grid-item.a {
    background-color: rgb(255, 255, 255);
    rotate: 0 deg;
    box-shadow: 3px 12px 20px rgb(88, 88, 88);
    border: 20px solid white;
    border-bottom: 60px solid white;
}
.grid-item.b {
    background-color: rgb(255, 255, 255);
}
.grid-item.c {
    background-color: rgb(255, 255, 255);
}
.grid-item.d {
    background-color: rgb(255, 255, 255);
}
.grid-item.e {
    background-color: rgb(255, 255, 255);
}
.grid-item.f {
    background-color: rgb(255, 255, 255);
}

.polaroid {
    /* post the same settings for the picture section here for sections to have the polaroid settings*/
    rotate: 0deg;
    box-shadow: 3px 12px 20px rgb(88, 88, 88);
    border: 20px solid white;
    border-bottom: 60px solid white;
}

.grid-item img {
    width: 100%;
}
/* Tablet*/
@media screen and (max-width: 1024px) {
    
    body {
        background-color: cadetblue;
        
    }
    #container {
        grid-template-columns: repeat(2,1fr);
    }

}
/* Phone*/
@media screen and (max-width: 430px) {
   /* body {
        background-color: cadetblue;
        
    }*/
}