* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

body {
  background: #181f23;
  /* color: #FF7B7A; */
  color: #059862;
}

.keyinfo {
  display: grid;
  place-items: center;
  margin-top: 150px;
}

.info {
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.boxes {
  display: flex;
  justify-content: center;
  margin: 10px 10px 10px 10px;
}

.box {
  border-radius: 10px;
  box-shadow: 3px 3px 3px 3px rgba(99, 99, 99, 0.3);
  padding: 25px 25px 25px 25px;
  border: 2px solid rgba(99, 99, 99, 0.3);
  margin: 50px 50px 50px 50px;
}

.box h2 {
  text-transform: capitalize;
}

.text {
  /* display: none; */
  width: 50%;
  /* border: none; */
  border: 2px solid #059862;
  outline: 0;
  padding: 10px;
  border-radius: 10px;
  margin: 15px 15px 15px 15px;
  background: #323739;
  font-size: 20px;
  color: #059862;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* 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 */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

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

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

.themeButton {
  border-radius: 5px;
  padding: 5px;
  margin: 5px;
  border: none;
  background: #059862;
  font-size: 15px;
  font-family: sans-serif;
}
