@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* Adjusted CSS code */

* {
  padding: 0;
  margin: 0;
}

body {
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}

.container {
  width: 100%;
}

.subcontainer {
  width: 50%; /* Adjust width */
  margin: auto;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* Add shadow for depth */
  position: fixed; /* Change to fixed position */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%);
  z-index: 1000; /* Ensure modal is on top */
}

.cookies p {
  margin-bottom: 10px; /* Adjust spacing between paragraphs */
}

#cookies-btn,
#deccookies-btn {
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: none; /* Remove border */
  background-color: #f27471;
  color: white;
  margin-top: 10px;
}

#cookies-btn:hover,
#deccookies-btn:hover {
  background-color: #e2605a; /* Darken color on hover */
}
