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

html{
    width: 100%;
    overflow-x: hidden;
}

h1 {
    color: #A1B5D8;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: center;
    font-size: 50px;
    text-shadow: 2px 2px #FFFCF7;
}

p {
    text-align: center;
    font-family: monospace;
    margin-top: 20px;
    margin-bottom: 30px;
    
}

a {
    color: #574c3d ;
    font-size: 20px;

   
}

a:hover {
    color: #cbbfb0;
}

body{
    background-color: #E5F0d0;
}

#container {
    display: grid;
    /*grid-template-columns: 1fr 1fr 2fr;*/
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    max-width: 3000px;

    position: relative;
    margin: 0 auto;
}

.grid-item{
    background-color: rgb(214, 229, 238);
    min-height: auto;
}

.grid-item.a{
    background-color: #C3D8B9;
}
.grid-item.b{
    background-color: rgb(255, 255, 255);
    rotate: 5deg;
    min-height: auto;
}
.grid-item.c{
    background-color: #C3D8B9;
}
.grid-item.d{
    background-color: rgb(255, 255, 255);
    rotate: -5deg;
    min-height: auto;
}

.grid-item.e{
    background-color: #C3D8B9;
}

.grid-item.f{
    background-color: rgb(255, 255, 255);
    rotate: 5deg;
    min-height: auto;
}

.grid-item.g{
    background-color: #C3D8B9;
}

.polaroid{
    box-shadow:3px 12px 13px #a9a9a900 ;
    border: 20px solid white;
    border-bottom: 60px solid white;
}

.grid-item img{
    width: 100%;
}

/* Tablet */
@media screen and (max-width: 1024px) {
#container {
    grid-template-columns: repeat(2, 1fr);
}    
}

/* Phone */
@media screen and (max-width: 430px) {

    /* body{
    backround-color: deeppink;
} 

@media screen and (max-width:600px) {


    /*body{
        background-color: #4800ff;
    }*/

    #container {
        display: grid;
        /*grid-template-columns: 1fr 1fr 2fr;*/
        /*grid-template-columns: repeat(5,1fr);*/
        grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
        gap: 30px;
    }

}