<style>
/_ CSS with SEO by ka-banar-han pa-juwang _/

body {
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  background-image: url('image.png');
  border-radius: 10px;
  margin: 0;
  padding: 20px;
  color: #000;
  font-family: Arial, sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  box-sizing: border-box;
  position: relative;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.search-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a:link {
  color: #ff5500;
  background-color: transparent;
  text-decoration: none;
}

a:visited,
a:hover,
a:active {
  color: #ff0000;
  background-color: transparent;
  text-decoration: none;
}

form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

select,
input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.5);
}

input[type="submit"],
button[type="submit"] {
  background-color: #4267B2;
  border: none;
  padding: 10px 10px;
  color: #fff;
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  top: 2px;
}

input[type="submit"]:hover {
  background-color: #ff0000;
}

iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
}

.iframepost {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.iframepost iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border:0;
}

.iframe-container {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.iframe-container::before {
  content: "";
  display: block;
  padding-top: 20px;
}

.iframe-container iframe[title] {
  border: none;
}

.custom-iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.custom-iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .iframe-container::before {
    padding-top: 10px;
  }
}

p.dotted {
  border-style: dotted;
}

p.dashed {
  border-style: dashed;
}

p.solid {
  border-style: solid;
}

p.double {
  border-style: double;
}

p.groove {
  border-style: groove;
}

p.ridge {
  border-style: ridge;
}

p.inset {
  border-style: inset;
}

p.outset {
  border-style: outset;
}

p.none {
  border-style: none;
}

p.hidden {
  border-style: hidden;
}

p.mix {
  border-style: dotted dashed solid double;
}
</style>