* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
 html, body, #content {
  height:100vh;
  width: 100vw;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */

}

.title {
  padding: 7px;
  border-radius: 10px;
  font-size: 20px;
  color: white;
  margin: 8px;
}
.text_content {
  background: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
  margin: 8px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
  justify-content: center;
  padding: 1rem;
  height: auto;
  row-gap: 20px;
  width: auto;
  }

.base_title {
  background: rgba(255, 93, 0, 0.8);
  margin-right: 100PX;
}

.base_subtitle {
  background: rgba(20, 120, 0, 0.9);
  width: 230px;
  margin-top: 20rem; 
}
.base_subtitle:hover {
  background: rgba(16, 44, 11, 0.9); 
  transform: scale(1.1);
 border: 1px solid white;
  transition: all 1s;

}

 .base_title, .base_subtitle {
  margin-top: 1rem;
  margin: 8px;
  border-radius: 10px;
  text-align: center;
}

.image {
  width: 190px;
  height: auto;
  border-radius: 10px;
  margin: auto;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
  -webkit-background-size: cover;
   -moz-background-size: cover;
   -o-background-size: cover;
   background-size: cover;
}

p {
  padding-top: 6px;
  text-align: justify;
  height: 100%;
  width: 90%;
}

.txtd_horizontal {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  text-align: justify;
  column-gap: 2rem;
}


#content {
  z-index: 1;
  position: absolute;
  padding-left: 30vw;
  padding-right: 30vw;
}

@media (min-width:100px) {
  #content {
  padding-left: 8vw;
  padding-right: 8vw;
}
  .text_horizontal {
    flex-direction: column;
  }
}
