@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  pading: 0;
  box-sizing: border-box;
  font-family: "Poppins";
}

.header {
  margin: 0 auto;
}

a {
  cursor: pointer;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent background */
  backdrop-filter: blur(5px);
  /* blur effect */
  z-index: 5;
  /* ensure the overlay is on top of other elements */
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 450px;
  border: 2px solid white;
  line-height: 80%;
  background-color: white;
  padding: 6rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 10;
}

body {
  background-color: black !important;
}

.center-container {
  border-left: 0.01em solid white;
  border-right: 0.5px solid white;
}

button:hover {
  color: black;
}
