.myimage-container {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.myimage-container img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.mycontent {
  position: absolute;
  z-index: 2;
  padding: 20px;
  border-radius: 10px;
  color: white;
  /*margin-top: -101px;*/
}

@media (max-width:576px) {
  .myEdges {
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
  }
}

