main {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}
body {
  background-color: #93aecb;

}
h1 {
  font-size: -webkit-xxx-large;
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
#wordle {
  width: 550px;
  height: 620px;
  display: grid;
  grid-template-rows: repeat(6, 1fr);
  grid-gap: 5px;
  padding: 10px;
  box-sizing: border-box;
}
.wordle-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 5px;
}

.letter {
  outline: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: capitalize;
}
.keyboard {
  position: fixed;
  bottom: 0;
  width: 100%;
}
.key {
  background-color: #cd5c5c;
  color: #ffffff;
  width: 75px;
  border-radius: 15px;
  font-size: 50px;
  text-transform: capitalize;
  padding: 10px;
  margin: 1px;
}
.row {
  display: flex;
  justify-content: center;
  padding: 1px;
}
.additional-function {
  padding: 10px;
  background-color: #FFB6C1;
  font-size: large;
  border-radius: 10px;
  font-weight: 700;
  width: 150px;
}
.menus {
  text-align: center;
  margin: 10%;
}
#del {
  width: 135px;
}
#enter {
  width: auto;
}

h2 {
  color: white;
}

#enter:disabled {
  background-color: rgb(128, 126, 139);
}

/* The Modal (background) */
.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: rgba(18,18,19,255);
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* 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;
}


