
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
:root {
  --container-bg-color: #7b7334;
  --text: #000000;
  --header-bg-color-green: #829254;
}
* {
  font-family: "Unbounded", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.title_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.title_box__h1 {
  font-size: 20px;
  color: var(--text);
  margin-top: 15px;
  text-align: center;
  text-shadow: 1px 1px 1px #FFFFFF; /* Adjust the shadow position and blur radius as needed */
  /* Other styles */
}
.title_box__p {
  font-size: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 1px 1px 1px #FFFFFF; /* Adjust the shadow position and blur radius as needed */
  /* Other styles */
}
.content-wrapper {
  padding: 0 20px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  
}
.viewport-1 {
  background-color: #c1bba1;
  display: flex;
  padding: 0 50px 0 50px;
  /* justify-content: center; */
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
}
.viewport-1__h2 {
  margin-top: 150px;
  color: #000000;
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 1px 1px 1px #FFFFFF; /* Adjust the shadow position and blur radius as needed */
  /* Other styles */
}
.viewport-1 p {
  font-family: "Gadugi";
  font-size: 15px;
  text-align: justify;

}
.viewport-1__img {
  padding: 20px 0 20px 0;
  width: 100%;
  border-radius: 35px;
}
.viewport-1__img__space {
  padding: 20px 0 20px 0;
  width: 100%;
}
/* Modal style */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 0px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url('../img/bg_smartphone_menu.png');
  background-repeat: none;
  background-size:cover;
  background-position: center;
  
}

/* Modal content */
.modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto; 
  margin-top: 150px;
  display: block;
  width: 90%;
  max-width: 700px;
  border-radius: 5%;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
#art-tak{
  width: 70px;
}
@media only screen and (min-width: 700px) {
  .content-wrapper {
    /* padding: 0 20px; */
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .viewport-1__img {
    padding: 20px 0 20px 0;
    width: 100%;
    border-radius: 35px;
  }
}
@media only screen and (min-width: 1000px) {
  .title_box__h1 {
    font-size: 30px;
    color: var(--text);
    margin-top: 15px;
    text-align: center;
  }
  .title_box__p {
    font-size: 25px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .viewport-1__h2 {
    font-size: 30px;
    /* margin-bottom: 5%; */
  }
  /* Modal content */
.modal-content {
  margin-top: 2%;
  /* display: block; */
  width: 100%;
  max-width: 1200px;
}

}
