* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style for the body */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", "Segoe UI Web (West European)", -apple-system,
    BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
}

/* Container for the 404 message */
.container {
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}

.heading {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

h3 {
  font-size: 2.5rem;
  color: rgb(36, 36, 36);
  margin-left: 0.4rem;
}

p {
  font-size: 1.5rem;
  color: rgb(36, 36, 36);
  margin-bottom: 1.5rem;
}

.donut {
  width: 25rem;
  height: 25rem;
}

.logo {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0.4rem;
}
/* Button styling */
.home-button {
  margin: 30px;
  padding: 10px 20px;
  font-size: 18px;
  color: white;
  background-color: rgb(76, 67, 224);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.home-button:hover {
  background-color: rgb(50, 41, 207);
}

/* Responsive styling */
@media (max-width: 768px) {
  h3 {
    font-size: 2rem;
    color: rgb(36, 36, 36);
    margin-left: 0.3rem;
  }

  .logo {
    width: 2rem;
    height: 2rem;
    margin-right: 0.3rem;
  }

  .donut {
    width: 22rem;
    height: 22rem;
  }

  p {
    font-size: 1.5rem;
  }

  .home-button {
    padding: 12px 25px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 1.8rem;
    color: rgb(36, 36, 36);
    margin-left: 0.2rem;
  }

  .logo {
    width: 1.8rem;
    height: 1.8rem;
    margin-right: 0.2rem;
  }

  .donut {
    width: 20rem;
    height: 20rem;
  }

  p {
    font-size: 1rem;
  }

  .home-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}
