@font-face {
    font-family: 'RobotoMono';
    font-style: bold;
    font-weight: 200;
    src: url(RobotoMono-Medium.ttf) format('truetype');
}
@font-face {
    font-family: 'RobotoMono';
    font-style: normal;
    font-weight: 200;
    src: url(RobotoMono-Light.ttf) format('truetype');
}
@font-face {
    font-family: 'RobotoMono';
    font-style: italic;
    font-weight: 200;
    src: url(RobotoMono-LightItalic.ttf) format('truetype');
}

html {
    background-color: #e0e0ff;
    font-size: 1.0em;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family:"Inconsolata", monospace
}

body{
  font-size: 18px;
}

.topbar {
    text-align: center;
    border-bottom: 2px solid rgb(76, 76, 76);
    display: block;
    padding-bottom:1em;
}

.gallary_container{
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15em, 1fr));
  grid-auto-rows: 15.5em;  
  padding: 10px;
}

.image_container img{
  width: 100%;
  height: 100%; 
    box-shadow: rgba(3, 8, 20, 0.1) 0px 0.15rem 0.5rem, rgba(2, 8, 20, 0.1) 0px 0.075rem 0.175rem;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .image-tall {
    grid-row: span 2 / auto;
  }

  .image-wide {
    grid-column: span 2 / auto;
  }
}