﻿/*
div {border-style: solid;}
*/

img.logo {
  width: 300;
  height: 66;
}

.subtitle {
  text-align: center;
  font-style: italic;
  line-height: 250%;
  font-size: 18;
}

.apps_row {
  border: 0px solid;
  display: flex;
  flex-wrap: nowrap;
}

/* Clear floats after the columns */
.apps_row:after {
  content: "";
  display: table;
  clear: both;
}

.apps_column_major {
  float: left;
  width: 30%;
  padding: 0px;
  /*animation: aFade .4s ease-out both .3s; */
  animation: aFadeSlide 0.4s ease-out both 0.5s;
  /* Preventing weird page load issues with animated footer */
  /*background: red;*/
  border: 0px solid;
}

.apps_column_minor {
  float: left;
  width: 20%;
  padding: 0px;
  /*animation: aFade .4s ease-out both .3s; */
  animation: aFadeSlide 0.4s ease-out both 0.5s;
  /* Preventing weird page load issues with animated footer */
  /*background: orange;*/
  border: 0px solid;
  margin-top: auto;
}

.apps_column_filler {
  float: left;
  width: 7.5%;
  padding: 0px;
  /*animation: aFade .4s ease-out both .3s; */
  animation: aFadeSlide 0.4s ease-out both 0.5s;
  /* Preventing weird page load issues with animated footer */
  /*background: gray;*/
  border: 0px solid;
}

.apps_row_filler {
  float: left;
  width: 42.5%;
  padding: 25px;
  /*animation: aFade .4s ease-out both .3s; */
  animation: aFadeSlide 0.4s ease-out both 0.5s;
  /* Preventing weird page load issues with animated footer */
  background: gray;
  border: 0px solid;
}

.apps_image {
  width: 100%;
  border-radius: 10px;
  border-width: 1px;
  border-color: gray;
  padding: 1%;
  background: black;
  box-shadow: 0 0 1px black;
  /*#ccc;*/
  cursor: pointer;
}

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .apps_column {
    width: 100%;
  }
}