@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
  background-color: rgb(17, 4, 31);
  color: wheat;
}

.title {
  text-align: center;
  font-size: xx-large;
}
.text-center {
  text-align: center;
}
.text-color {
  color: wheat;
}
.roboto-bold {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.description {
  text-align: justify;
}
.text-medium {
  font-size: medium;
}
.p-2 {
  padding: 5px;
}
#blog-content {
  margin: 10px;
  padding: 15px;
  border: 2px solid white;
  border-radius: 10px;
}
#images {
  margin: 10px;
  padding: 10px;
}
#slider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#img-container {
  display: flex;
  overflow: hidden;
  height: 400px;
  width: 400px;
  border-radius: 10px;
  margin: auto;
}
#img-container img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s ease-in-out;
}
#next-btn,
#prev-btn {
  cursor: pointer;
}
