
body {
  margin: 0;
  background-color: #10151e;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  display: flex;
  height: 100vh;
}

.sidebar {
  width: 200px;
  background-color: #10151e;
  border-right: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
}

.logo img {
  width: 150px;
  margin-bottom: 30px;
}
.menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  align-items: center;
}

.menu a {
  width: 80%;
  padding: 10px;
  border-radius: 8px;
  background-color: #2c333d;
  color: white;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.menu a:hover {
  background-color: #3e4753;
}

.menu a.active {
  background-color: #507cff;
}


.content {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
}

.content-box {
  background-color: #10151e;
  border: 2px solid #b0b6c2;
  border-radius: 10px;
  padding: 20px;
  width: 70%;
  max-width: 800px;
}

.images {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.text {
  margin-top: 20px;
  line-height: 1.6;
  text-align: center;
}
