* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Rubik', sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.app {
  height: 100%;
  width: 100%;
}

.bg-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
}

.bg-image {
  width: 100%;
  height: 40%;
  background-image: url(https://sudonut.github.io/ip-tracker/imgs/pattern-bg.png);
  background-size: cover;
}

.ip-map {
  width: 100%;
  height: 80%;
  z-index: 1;
}

.ip-info-wrap > h1 {
  color: white;
}

.ip-info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 36%;
  width: 100%;
}

.ip-input-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.ip-input-val {
  height: 3.5rem;
  width: 41rem;
  border: none;
  font-size: 1.6rem;
  padding-left: 1.2rem;
  border-bottom-left-radius: 9px;
  border-top-left-radius: 9px;
}

.ip-input-submit {
  width: 9%;
  background: black;
  border: none;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  color: white;
}

.ip-input-submit:hover {
  background: #555454;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.fa-chevron-right {
  font-size: 1.1rem;
}

.ip-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: white;
  height: 32%;
  width: 80%;
  border-radius: 22px;
}

.ip-content > h4 {
  color: gray;
}

.ip-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 50%;
  width: 20%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4%;
  font-size: 1.2rem;
}

.border {
  border-left-width: 1px;
  border-left-style: solid;
  border-color: gray;
}

@media (max-width: 1575px) {
  .ip-content {
    font-size: 1rem;
  }
}

@media (max-width: 1323px) {
  .ip-content {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .ip-info-wrap {
    height: 20%;
  }
  .ip-input-val {
    width: 23rem;
    font-size: 1.2rem;
  }
  .ip-input-submit {
    width: 2.5rem;
  }
  .ip-info {
    position: absolute;
    top: 82%;
    margin-top: 2.4rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 27rem;
    max-width: 19rem;
  }
  .ip-content {
    width: 72%;
    text-align: center;
    font-size: 1rem;
  }
  .border {
    border: none;
  }
}

@media (max-width: 436px) {
  .ip-input-val {
    height: 3rem;
    width: 18rem;
    font-size: 1rem;
    padding-left: 0.5rem;
  }
  .ip-info {
    height: 19rem;
    max-width: 14rem;
  }
  .ip-content {
    font-size: 0.8rem;
  }
}
/*# sourceMappingURL=style.css.map */