/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-size: 14px;
  font-family: 'IBM Plex Mono', monospace;
  background-color: #fff;
}

/* Container Layout */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

/* Box Group */
.boxes {
  display: flex;
  position: relative;
  margin-bottom: 50px;
}

.box {
  width: 56px;
  height: 69px;
  background-color: black;
  margin: 0 5px;
}

.small-box {
  width: 14px;
  height: 14px;
  background-color: black;
  position: absolute;
  bottom: 0;
  left: 10px;
}

/* Content Section */
.content {
  width: 520px;
  text-align: left;
}

.content p {
  margin-bottom: 15px;
  line-height: 1.6;
}


/* Container Styling */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Center vertically */
  background-color: #fff;
}

/* Logo Styling */
.logo {
  width: 150px; /* Adjust size as needed */
  height: auto;
  object-fit: contain;
}
