/* Reset CSS */
* {
  margin: 0;
  padding: 0;
  border: 0 none;
  box-sizing: border-box;
}

*:before, *:after {
  box-sizing: border-box;
}

/* Colors */
/* Mixins */
html, body {
  font-family: "Roboto Condensed", sans-serif;
  color: white;
  font-size: 16px;
  overflow-x: hidden;
  height: 100%;
}
html:before, body:before {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgb(46, 49, 55) 0%, rgb(21, 25, 30) 100%);
  top: 0;
  left: 0;
  z-index: 0;
}
html:after, body:after {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background: url("../img/noise.png") repeat scroll center center transparent;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: multiply;
}
@media (max-width: 640px) {
  html, body {
    height: auto;
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto Condensed", sans-serif;
}

img {
  max-width: 100%;
}

.container {
  position: relative;
  z-index: 5;
  width: 98%;
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: calc(1rem * 2);
}
.container > div {
  width: 50%;
}
@media (max-width: 640px) {
  .container {
    display: block;
    padding: 1rem;
    height: auto;
  }
  .container > div {
    width: 100%;
    margin-bottom: calc(1rem * 2);
  }
}

.header {
  margin-bottom: calc(1rem * 2);
}
.header h1 {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.header p {
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
  font-weight: 300;
}
@media (max-width: 640px) {
  .header h1 {
    font-size: 3.5rem;
  }
}

.social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.social > li {
  display: inline-block;
  margin-right: 1rem;
}
.social > li > a {
  font-size: 1.5rem;
  color: white;
  display: block;
  transition: all 0.3s ease;
}
.social > li > a:hover {
  color: #5468FF;
}

.item {
  background-color: #F9F9F9;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 3px;
  text-decoration: none;
  color: #272e43;
  transition: all 0.3s ease;
}
.item:last-child {
  margin-bottom: 0;
}
.item > div:first-child {
  width: 25%;
}
.item > div:last-child {
  width: 75%;
}
.item .image {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid rgb(236.25, 236.25, 236.25);
}
.item .image img {
  display: block;
}
.item .content h4 {
  font-size: 1.25rem;
  margin-bottom: calc(1rem / 2);
  transition: all 0.3s ease;
}
.item .content p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.875rem;
}
.item:hover {
  transform: scale(1.05);
}
.item:hover .content h4 {
  color: #5468FF;
}/*# sourceMappingURL=app.css.map */