@import url("https://fonts.googleapis.com/css?family=Montserrat");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
  color: #eee;
  font-size: 16px;
}

h1 {
  font-size: 5rem;
}

.container {
  height: 100vh;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
}

.container p {
  font-size: 1rem;
  padding: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
}
.container p span {
  font-weight: normal;
  color: #dd7732;
}
.container p span.typed-text {
  font-size: 2.5rem;
  font-weight: normal;
  color: #dd7732;
}
.container p span.cursor {
  font-size: 2.5rem;
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.container p span.cursor.typing {
  animation: none;
}

.container .social {
  position: relative;
  bottom: 1rem;
}
.container .social img {
  max-width: 100%;
  width: 100px;
  filter: grayscale(1);
}
.container .social img:hover {
  filter: grayscale(0);
}

.container .technologies {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.container .technologies img {
  max-width: 100%;
  height: 100px;
  filter: grayscale(1);
  margin: 0 1.5rem;
}
.container .technologies img.php {
  height: 140px;
}
.container .technologies img.wp {
  height: 120px;
}
.container .technologies img:hover {
  filter: grayscale(0);
}

@keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}

@media all and (max-width: 767px) {
  body {
    font-size: 12px;
  }

  .container .technologies {
    display: none;
  }
}
