:root {
  --primary: #730b93;
  --secondary: #ffffff;
  --background: darkgray;
  --primary-hover: #855694;
  --border-radius: 25px;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--primary);
  background-color: var(--background);
  width: 100vw;
  margin: 0;
}

.help {
  visibility: hidden;
  width: 150px;
  background-color: var(--primary);
  color: var(--secondary);
  border-radius: var(--border-radius);
  padding: 5px 0;
  z-index: -1;
}

.explanation {
  padding-left: 35px;
}

 /* The Modal (background) */
 .modalPreview {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalPreview-content {
  /* background-color: #fefefe; */
  background-color: var(--secondary);
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid var(--primary);
  width: 90%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.modalPreviewClose {
  color: var(--primary);
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modalPreviewClose:hover,
.modalPreviewClose:focus {
  color: var(--primary-hover);
  text-decoration: none;
  cursor: pointer;
}