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

body {
  background: #212326;
  height: 100vh;
  width: 100vw;
  
}

.logo
{
    padding: 10px;
    text-align: center;
}

#logo-image img
{
    width: 300px;
    height: 100px;
}

h1 
{
  text-align: center;
  color: #fff;
}


.container {
  margin: auto;
  border: antiquewhite solid 5px;
  background: antiquewhite;
  padding: 10px 50px;
  height: 80vh;
  width: 100vw;
}

/* mak images fill their container*/
img {
  max-width: 100%;
  padding: 10px;
}
img:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* CSS Grid*/
.img-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 5px;
}

/* Media Query for changing grid on bigger screens*/

/* Bigger than Phones(tablet) */
@media only screen and (min-width: 750px) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Bigger than Phones(laptop / desktop) */
@media only screen and (min-width: 970px) {
  .img-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
