* {
  margin: 0;
  padding: 0;
}

p, a {
  font-family: 'Fira Sans', sans-serif;
}

h1 {
  font-family: 'Fira Sans', sans-serif;
  font-size: 90px;
  color: #fff;
  font-weight: normal;
  margin-bottom: 10px;
  text-align: center;
}

/* body {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  align-items: center;
  font-family: Arial, sans-serif;
} */

.wrapper {
  display: grid;
  height: 100vh;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows:1fr 2fr;
  background-image: url(../img/mainBackground.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}


.header {
  grid-column: 2 / -1;
}

.identity {
  margin-top: 60px;
}

.hello {
  grid-column: 2 / 12;
}

.contact {
  grid-column: 2 / 12;
  color: #fff;
  margin-bottom: 60px;
}

.contact p {
  font-size: 16px;
  line-height: 2;
}

a:link, a:visited {
  color: #009DE9;
  text-decoration: none;
  font-size: 24px;
  font-weight: normal;
  animation: colorChange 3s infinite;

}

a svg #sysid:hover {
    fill: #ffffff;
}

a:hover {
  color: #fff;
}

@media screen and (min-width: 1920px) {
  h1 {
    font-size: 104px;
  }
  .contact p {
    font-size: 24px;
  }

  a:link, a:visited {
    font-size: 32px;
  }
}

@media screen and (max-width : 540px) {
  h1 {
    font-size: 46px;
  }
  .hello {
    grid-column: 2 / 12;
    margin-top: 20px;
    text-align: left;
  }
  .contact {
    margin-top: 30px;
    text-align: left;
  }
}
