/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  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.9); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #d7d3ce;
  margin: auto;
  padding: 5px;
  font-family: "Courier New", Courier, monospace;
  width: 470px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-shadow: 5px 5px 10px #888888;
}

div img {
  border: none;
}
.headerImg {
  border: 2px solid #888;
}

.textbox {
  margin-left: 10px;
  margin-bottom: 5px;
}

.featuresBox {
  padding-left: 5px;
  margin-right: 5px;
  border: 1px solid rgb(0, 0, 0);
}
/* The Close Button */
.close {
  color: #aaaaaa;
  padding: 0px 10px 0px 10px;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 28px;
  font-weight: bold;
  background-color: #d7d3ce;
}

.close:hover,
.close:focus {
  background-color: rgb(138, 137, 137);
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.box img {
  border: none;
  width: 20px;
  margin-right: 10px;
}

.box {
  vertical-align: middle;
  margin: 10px 5px 10px 5px;
  transition: all 0.2s ease-in-out;
  padding: 10px;
  background-color: #d7d3ce;
  width: 160px;
  text-decoration: none;
  color: black;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  border-left: 1px outset rgb(104, 104, 104);
  border-top: 1px outset rgb(104, 104, 104);
  border-right: 3px outset rgb(104, 104, 104);
  border-bottom: 3px outset rgb(104, 104, 104);
  display: flex;
  align-items: center;
}
.wbtn {
  text-decoration: none;
  color: black;
}

.box:hover {
  color: rgb(104, 103, 103);
  background-color: rgb(138, 137, 137);
  border-style: inset;
  transform: scale(4.1);
}

.scaler {
  transition: all 0.2s ease-in-out;
}
.scaler:hover {
  transform: scale(10.1);
}

.btnBox {
  display: flex;
  justify-content: center;
}

.topbar {
  color: azure;
  display: flex;
  border-radius: 5px 5px 0px 0px;
  justify-content: space-between;
  background-color: #06256f;
  width: 100%;
  height: auto;
}
.titletext {
  margin-top: 5px;
  margin-left: 10px;
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
}
@keyframes color-change {
  0% {
    color: red;
  }
  50% {
    color: yellow;
  }
  100% {
    color: red;
  }
}
.yellowFlash {
  animation: color-change 0.25s infinite;
}

@media (min-width: 1100px) {
  #myModal {
    display: block;
  }
}
