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

body {
  display: flex;
  flex-direction: column;
  align-items: center;

  min-height: 100vh;
  background-color: lightgray;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
}

main p {
  line-height: 1.5rem;

  margin-top: 0.5rem;
}

main {
  padding: 8px;
}

main h2 {
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.logo-container {
  width: 150px;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  color: #333;
}

h2 {
  font-size: 1.5rem;
}

.tools-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  max-width: 800px;
  width: 100%;
}

.tool-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  background-color: #0628fd;
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

.tool-link:hover {
  background-color: #ffac00;
}

/* Code snippets */

.copy-container {
  position: relative;
  display: inline-block;
  margin: 20px 0px 0px 0px;
  padding: 20px;
  background-color: lightgray;
  border: 2px solid darkgray;
  border-radius: 5px;
}

.copy-text {
  margin: 0;
  padding: 20px;
  background-color: #eee;
  border-radius: 15px;
  white-space: pre-wrap;
}

.copy-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  background-color: #ffac00;
  border: none;
  color: white;
  padding: 10px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #0056b3;
}

.terminal {
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}

.highlight {
  color: red;
}

.center {
  text-align: center;
}

@media (max-width: 600px) {
  .tool-link {
    width: 100px;
    height: 100px;
    font-size: 1rem;
  }
}
