body {
    background-color: #eaf7fe;
    height: 100%;
    width: 100%;
    margin: 0;
}
#main-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    margin: auto;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-template-rows: 30vh;
    align-items: center;
    justify-items: center;
  }
.icon {
    width: 150px;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
  }
.icon:active {
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
  }
.app-name {
    display: block;
    color: #292929;
    font-family: Sans-Serif;
    padding-top: 10px;
    font-size: 1.4rem;
    text-align: center;
    filter: drop-shadow(2px 2px 2px rgba(0,0,0,0.3));
}
.app-name:active {
    filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.3));
}
a {
    text-decoration: none;
    color: #292929;
}

/* Removes blue box highlight when tapping icon */
.no-tap-highlight {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

@media all and (min-width: 1024px) and (max-width: 1280px) { }

@media all and (min-width: 768px) and (max-width: 1024px) { }

@media all and (min-width: 0px) and (max-width: 768px) { 
    .wrapper {
        grid-template-columns: 1fr;
      }
}
