@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f4f4;
  padding: 20px;
  background-color: #191921;
}

.category {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #15151a;
  border: 2px solid #ff33664a;
}

h2,
h3 {
  text-align: center;
  color: #f36;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ddd;
}

.tool {
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  background-color: #191921;
  color: #ffdada;
  box-shadow: 0 0 5px #111;
}

.tool p {
  margin: 10px 0;
  font-size: 18px;
}

.tool a {
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
  color: #ddd;
}

.tool a:hover {
  color: #ff5e00;
  text-decoration: overline;
  text-decoration-color: #ff0000;
}

.headercont {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: #ff3366;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 768px) {
  .category {
    margin-left: auto;
    margin-right: auto;
  }
}