@charset "utf-8";
/* CSS Document */

@media screen and (max-width: 768px) {
  body {
    justify-content: flex-start; 
  }

  .container {
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    max-width: 90%;
  }

  h2 {
    font-size: 18px;
  }

  #ipValue, #ispValue, #countryValue {
    font-size: 14px;
    margin: 6px 0;
  }
}


body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #1b1b1b;
}

.container {
  text-align: center;
  background-color: #696969;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  max-width: 80%;
}

h2 {
  margin: 0;
  font-size: 24px;
  color: #080808;
}

#ipValue, #ispValue, #countryValue {
  font-weight: bold;
  font-size: 16px;
  margin: 8px 0;
}
