/* Global Styles */

* {
  box-sizing: border-box;
}

body {
  font-family: monospace, monospace-serif;
  background-color: #1A1D23; /* Dark Blue Background */
  color: #F7F7F7; /* Light Gray Text Color */
  margin: 0;
  /* padding: 64px; */
}

h1 {
    text-align: center; /* Center h1 text */
}

a {
  text-decoration: none;
  color: #F7F7F7;
}

p {
  /* width: 800px; /* Set the width of paragraphs to 500px, adjust as needed */
}

/* Main Content */
.main-content {
    max-width: 640px; /* Set the maximum width of the main content to 800px */
    padding: 24px;
    margin: 0 auto; /* Center the main content horizontally */
}

/* Header */

.header {
  background-color: #2C3D50; /* Dark Blue Header */
  padding: 10px;
  border-bottom: 1px solid #343A40; /* Border with Dark Gray Color */
}

.header .logo {
  font-size: 24px;
  font-weight: bold;
  color: #F7F7F7;
}

/* Navigation */

.nav {
  background-color: #2C3D50; /* Dark Blue Background for Nav */
  padding: 10px;
  border-bottom: 1px solid #343A40; /* Border with Dark Gray Color */
}

.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav li {
  display: inline-block;
  margin-right: 20px;
}

.nav a {
  color: #F7F7F7; /* White Text for Navigation Links */
  text-decoration: none;
}

/* Button Styles */

.button {
  background-color: #3498DB; /* Sky Blue Background for Buttons */
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  color: #F7F7F7;
  font-size: 16px;
}

.button:hover {
  background-color: #2E4053; /* Dark Blue Background on Hover */
  color: #F7F7F7;
}

/* Input Field Styles */

.input-field {
  width: 200px;
  padding: 10px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background-color: #2C3D50; /* Dark Blue Background for Inputs */
  color: #F7F7F7;
}

.input-field:focus {
  outline: none;
  background-color: #1A1D23;
  color: #F7F7F7;
}

/* Text Styles */

.text-box {
  font-size: 16px;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  background-color: #2C3D50; /* Dark Blue Background for Text Boxes */
  color: #F7F7F7;
}

.text-box:hover {
  background-color: #1A1D23;
  color: #F7F7F7;
}

/* Sprite Sheet */

.sprite-sheet {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  background-size: 100% 100%;
  background-position: center;
}

.sprite-sheet img {
  max-width: 100%;
}

