body,
html {
  background-color: darkgray;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  overflow: hidden;
}
body {
  background-image: url("background.jpg");
  background-color: #cccccc;
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
  width: 100vw;
}
.container {
  width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(48, 48, 48, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
}

#jrd {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.3);
}

.logo-container {
  /* width: 55%;
  height: auto; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container h1 {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  color: rgb(231, 231, 231);
  font-size: 6rem;
}
/* img {
  display: block;
  width: 100%;
} */
.name-list-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh; /* Adjust this value if needed */
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
}

#name-list {
  list-style-type: none; /* Removes bullet points */
  padding: 0; /* Removes default padding */
  margin: 0; /* Removes default margin */
  font-size: 54px;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

body.blur > *:not(.name-list-container) {
  filter: blur(5px);
  pointer-events: none;
}

.name-display {
  font-size: 64px;
  text-align: center;
  font-family: "Roboto", sans-serif;
  transition: font-size 0.5s;
}

.name-display.winner {
  font-weight: 900;
  font-size: 8vw; /* Adjust this value as needed to ensure the name takes up approximately 50% of the screen */
  color: black;
  position: absolute;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Roboto", sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000; /* Ensure it's above other content */
  width: 100%;
  text-align: center;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

#csvUpload {
  display: none;
}

button,
.label-file {
  padding: 10px 15px;
  background-color: #333;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  margin: 5px 0;
  display: inline-flex;
  width: 150px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.label-file {
  height: 20px;
  font-family: inherit;
  font-size: 12px;
  text-transform: uppercase;
}

button:hover,
.label-file:hover {
  background-color: #555;
}
.blur-effect {
  filter: blur(5px);
  pointer-events: none;
}
.winner {
  z-index: 1000;
}
#spin,
#fullscreen {
  text-transform: uppercase;
  font-size: 12px;
}
