/******************************************
/* CSS
/*******************************************/

/* Box Model Hack */
* {
  box-sizing: border-box;
}

/******************************************
/* LAYOUT
/*******************************************/

h1 {
  text-align: center;
}

.hide {
  display: none;
}

fieldset {
  display: flex;
  flex-direction: column;
  width: 25%;
  margin: 0 auto;
}

legend {
  text-align: center;
}

input[type="checkbox"] {
  width: 30px;
  height: 30px;
  /* Adjust margins as needed to align with text */
  margin: 5px;
}

label {
  font-size: 25px;
}

h2,
h3 {
  text-align: center;
}

button#fire {
  background-color: RED;
  color: white;
  border: none;
  padding: 35px;
  border-radius: 50%;
  box-shadow: 2px 2px 5px 3px rgba(0, 0, 0, 0.58);
  margin: 20px auto;
  display: flex;
  justify-content: center;
}

img {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/

/* modal */
.hidden {
  display: none;
}

/* The Modal (background) */
.modal {
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  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 */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
