@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Philosopher');

html, body, ul, ol, li, form, fieldset, legend {
  margin: 0;
  padding: 0;
}

*, ::before, ::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: helvetica;
  font-size: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  max-width: 1280px;
  margin: 0 auto !important;
  float: none !important;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

a:hover {
  text-decoration: none;
}

:last-child {
  margin-bottom: 0;
}

.clr {
  clear: both
}

a:active, a:focus {
  outline: 0;
  border: none;
  -moz-outline-style: none
}

/* End Reset */
/* Styling the entire page */
.wrapper {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  grid-auto-rows: auto;
  align-items: center;
  justify-content: center;
}

.logo {
  margin: 20px auto;
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  padding: 20px 0;
  width: 100%;
}

.logo img {
  width: 100%;
}

.copy {
  grid-column: 1 / -1;
  grid-row: 3 / 4;
  color: #000000;
  font-size: 36px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Animations */
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 445px) {
  h1 {
    font-size: 1em;
  }
}

@media (max-width: 200px) {
  .wrapper {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-auto-rows: auto;
    align-items: center;
    justify-content: center;
  }

  header {
    grid-column: 1 / -1;
    grid-row: 1;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    background-color: #283042;
    margin-top: 0px;
    padding: 3rem;
    display: flex;
    justify-content: center;
  }

  .top {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    grid-auto-rows: auto;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    display: inline-block;
    width: 80%;
  }
}
