body {
  background-color: #000000;
   background-image: url(bckgrnd2.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;

}

.wrap {
  text-align: center;
}


.btn-group .btn {
  font-family: 'Roboto', sans-serif;
  color: #E1E1DD;
  background-color: black;
  border-color: white;
  width: 180px;
  height: 50px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  display: grid;
  place-items: center;
  justify-content: center;

}

.btn:hover {
  background-color: #06e258;
  transition: 1s;

}

.btn-group .first-child {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.btn-group .last-child {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.btn:focus,
.btn:active {
  outline: none !important;
  box-shadow: none !important;
}


.main {
  background-color: #000000;
  height: auto;
  max-width: 996px;
  margin: auto;
    box-shadow: 1px 1px 2px black, 0 0 25px blue, 0 0 5px darkblue;

}

img {
  width: 100%;
  height: auto;
  display: flex;
  align-content: center;
  border-style: inset;
  border-color: white;
  border-radius: 25px;
}




.grid-container {
  display: grid;
  background-color: transparent;
  padding: 10px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;


}

.grid-item {
  background-color: transparent;
  border: 1px solid transparent;
  padding: 20px;
  font-size: 30px;
  text-align: left;
}



.dropdown {
  display: none;
  padding: 10px;
}

@media (min-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 599px) {
  .dropdown {
    display: flex;
  }
}

@media (max-width: 599px) {
  .wrap {
    display: none;
  }
}