* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Mono', monospace;
  color: black;
  background-color: #ddd;
  font-weight: normal;  /* or 400 */
}
h2,h3,h4,h5,h6,p,header,button,a,nav {
  font-weight: normal;  /* or 400 */
  font-style: normal;
  font-family: 'IBM Plex Mono', monospace;
}
h1 {
  font-weight: bold;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  gap: 0.5rem;
  border-bottom: solid 1px #000;
  background-color: #ccc;
}

nav a {
  display: inline-block;
  min-width: 9rem;
  padding: 0.5rem;
  border-radius: 0.2rem;
  border: solid 1px #000;
  border-bottom: solid 4px #000;
  border-right: solid 4px #000;
  text-align: center;
  text-decoration: none;
  color: #000;
}
nav a[aria-current='page'] {
  color: #000;
  background-color:#ddd;
  border-bottom: solid 4.5px #444; 
  border-right: solid 4px #444;
  border-left: solid 1px #444;
  border-top: solid 1px #444;
  
}

main {
  padding: 1rem;
  font-weight: normal;
  display: flex;
  gap: 1rem; /* space between the boxes */
  flex-wrap: wrap; /* ensures they stackon smaller screens */
  justify-content: center; /* optional:center them horizontally */
  padding: 1rem;
}
/* This is a comment */
h1 {
  font-size: 1.5rem;
  text-align: center;
  font-size: 35px;
}
.CTF1 {
  color: #000;
  border: solid 1px #000;
  border-bottom: solid 5px #000;
  border-right: solid 5px #000;
  border-radius: 0.5rem;
  padding: 1rem;
  width: 200px; /* or set a fixed width like 200px */
  background: #eee;
  margin-top: 1rem;
  text-align: center;
  font-weight: Bold;
  font-size: 25px;
}
p {
  font-size: 14px;
  color: #222;
}
.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #FFC300;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  border: none; /* add this to start with no border */
  transition: background-color 0.7s ease, border 0.2s ease;
}

.button-link:hover {
  background-color: #FFC300;
  border-bottom: solid 4.5px #000;
  border-right: solid 4px #000;
  border-left: solid 1px #000;
  border-top: solid 1px #000;
}
.input-wrapper {
  text-align: left;
  display: block;
  margin: 0 auto;
}
.input-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  margin: 0 auto;
  background-color: #eee;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #000;
  border-bottom: 5px solid #000;
  border-right: 5px solid #000;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.input-wrapper label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.input-wrapper input {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #ddd;
  color: #f0f0f0;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.input-wrapper input:focus {
  border-color: #ffc300;
}



.input-wrapper label {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #000;
}

.input-wrapper input {
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #ddd;
  color: #222;
  font-size: 1rem;
  outline: none;
  margin-bottom: 1rem;
}

.input-wrapper input:focus {
  border-color: #333;
}

.button-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc300;
  color: #000;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  font-family: 'IBM Plex Mono', monospace;
}


#result-message {
  margin-top: 1rem;
  font-weight: bold;
}
.Link {
  color:#222;
  padding-bottom: 10px;
}
.Link:hover {
  color: #444
}
.landing-info {
  background-color: #f6f6f6;
  padding: 2rem;
  border: 1px solid #000;
  border-bottom: 5px solid #000;
  border-right: 5px solid #000;
  border-radius: 10px;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.landing-info h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.landing-info p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 1rem;
  line-height: 1.6;
}
