:root {
  --stroke: hsla(0, 0%, 90%, 0.5);
  --stroke-width: 0.5;
}
html,
body {
  background: white;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

svg {
  transform-origin: 0% 0%;
}

path {
  stroke: var(--stroke);
  stroke-width: var(--stroke-width);
}

.parent {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
}

.block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes fadeIn {
  from {
    top: 20%;
    opacity: 0;
  }
  to {
    top: 100;
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  from {
    top: 20%;
    opacity: 0;
  }
  to {
    top: 100;
    opacity: 1;
  }
}

.wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  animation: fadeIn 1000ms ease;
  -webkit-animation: fadeIn 1000ms ease;
}

h1 {
  font-size: 50px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0;
  line-height: 1;
  font-weight: 700;
}

.dot {
  color: #4febfe;
}

p {
  text-align: center;
  margin: 18px;
  margin-bottom: 50px;
  font-family: 'Muli', sans-serif;
  font-weight: normal;
  font-style: italic;
}

.icons {
  padding-top: 20px;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  max-height: 60px;
  /*column-gap: 10px;*/
}

a {
  color: #00091b;
  background: rgba(255, 255, 255, 0.5);
  height: 15px;
  width: 15px;
  padding: 13px;
  margin: 0 10px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transition: all 200ms ease;
  text-decoration: none;
  position: relative;
}

.test {
  flex-grow: 0;
  height: 100%;
  width: 100%;
}

@media (min-width: 650px) {
  .test:hover {
    transform: scale(1.3);
    -webkit-transition: transform 0.35s ease-in-out;
    -moz-transition: transform 0.35s ease-in-out;
    -ms-transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
  }

  .test:hover a {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer !important;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
  }
}

@media (max-width: 650px) {
  a {
    background: none;
    padding: 0;
    margin: 0 10px;
    border: none;
    transition: all 200ms ease;
    text-decoration: none;
    position: relative;
  }

  .svg-inline--fa {
    height: 1.5em;
  }
}
