@import url('https://fonts.googleapis.com/css?family=Roboto|Suez+One&display=swap');

* {
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100%;
  background-color: white;
  /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
  font-family: Trebuchet MS, Helvetica;
}

#imglogo img {
  position: absolute;
  width: 200px;
  top: 0;
}

#ins {
  width: 100%;
  height: 40px;
  background-color: white;
  font-family: Trebuchet MS, Helvetica;
  text-align: center;
  font-weight: bold;
  font-size: 2.2em;
  color: #385e8f;
}

#main {
  position: relative;
  padding-bottom: 10px;
  margin-left: 13%;
  height: 95%;
}

#main img {
  float: left;
  width: 18%;
  transition: all 0.5s ease;
  filter: grayscale(100%);
  height: 100%;
  margin: 10px 0px;
  object-fit: fill;
}

#main img:hover {
  cursor: pointer;
  filter: saturate(100%);
}


@media (max-width: 700px) {

  #main {
    margin-left: 1%;
  }

  img {
    margin-top: 1%;
  }

  img:hover {
    cursor: pointer;
    border: 1px dotted #3a7999;
  }

  @media (max-width: 700px) {
    #imglogo img {
      visibility: hidden;
    }
  }


}