* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Vazirmatn", sans-serif;
  font-feature-settings: "ss01";
}

body {
  background-color: #f9fafc;
}

.container {
  max-width: 1200px;

  margin-top: 30px;
  margin: 0 auto;
}
main {
  width: 600px;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 25px;
}
.center {
  display: flex;
  justify-content: center;
}
.iframe-wrapper {
  width: 100%;
}
#myFrame {
  width: 100%;
  height: 500px;
  border: 1px solid black;
}
.site-permissions {
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.site-permissions span {
  font-weight: bold;
}
.btns-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
button {
  outline: 0;
  border-radius: 8px;
  border: 1px solid rgb(234, 236, 240);

  background-color: #fff;
  color: #000;

  padding: 8px 27px;

  transition: background-color 0.3s ease;

  box-shadow: rgba(13, 34, 70, 0.02) 0px 20px 12px -2px,
    rgba(13, 34, 70, 0.04) 0px 29px 62px -4px;

  cursor: pointer;
}
button:hover {
  background-color: rgb(65, 135, 255);

  color: #fff;
}
/* Responsive Design */
@media only screen and (max-width: 600px) {
  main {
    width: 97%;
  }
  .site-permissions span {
    font-size: 16px;
  }
}
