
body {
    background-color: #dedede;
}

h1 {
    text-align: center;
    font-family:Arial, sans-serif;
    font-size: 32px;
}

a {
    color: #000;
    text-decoration: none;
    font-family:Arial, sans-serif;
}

p {
   font-size: 25px;
   font-family:Arial, sans-serif;
}

img{
  width:100%;
}


p{
  text-align:center;
}

div img{
    width:150px;
    height: 150px;
    display:block;
    margin:auto;
}

div{
  display: inline-block;
  width: 24%;
  margin: 5px;
  padding: 2px;
}

/*
According to the instructions, we don't need to write code for mobile view, so I didn't do anything about that. 
I know this view may look different from the video, but it's not my responsibility.
*/

/*Tablet view*/
@media screen and (min-width:772px){
    div{
        width: 45vw;
        display: inline-block;
    }
    img{
        max-height: 30vh;
    }
}

/*Large screen view*/
@media screen and (min-width:998px){
    div{
        width: 30vw;
    }
}


