@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d992.597625942854!2d100.88390722916226!3d5.656521634318428!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x31b4d8ce79ada83f%3A0xa13764311f2aaf9c!2sTaman%20Mahameru%20Pulai%2C%2009100%20Baling%2C%20Kedah!5e0!3m2!1sms!2smy!4v1626670522759!5m2!1sms!2smy");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");
:root {
  /* Definitive Color */
  --color-red: #ec5858;
  --color-base: #f5f7fa;
  --color-white: #fff;
  --color-green: #00af91;
  --color-table: #eff1f5;
  --color-header: #fcb2a9;
  --color-body: #fffff8;
  --color-body2: #FFF8E5;
  --color-grey-900: #1f2933;
  --color-grey-800: #1f2933;
  --color-grey-700: #323f4b;
  --color-grey-600: #3e4c59;
  --color-grey-500: #52606d;
  --color-grey-400: #616e7c;
  --color-grey-300: #7b8794;
  --color-grey-200: #9aa5b1;
  --color-grey-100: #cbd2d9;
  /* Devices */
  --device-sm: 640px;
  --device-md: 768px;
  --device-lg: 1024px;
  --device-xl: 1280px;
  --device-2xl: 1440px;
  /* Component Color */
  --color-link: #7069fa;
  --color-link-hover: #8c86ff;
  --color-border-button: #9aa5b1;
  --color-border: #e8e9eb;
  --color-font: #3e4c59;
  --color-font-light: #616e7c;
  --color-font-lighter: #9aa5b1;
  --color-font-white: #ebebeb;
  --color-outline: #a0c2ff;
  --color-highlight: #F8CBAD;
  /* Sizes */
  --size-10: 10px;
  --size-12: 12px;
  --size-14: 14px;
  --size-16: 16px;
  --size-18: 18px;
  --size-20: 20px;
  --size-22: 22px;
  --size-24: 24px;
  --size-28: 28px;
  --size-32: 32px;
  --size-48: 48px;
  --size-64: 64px;
  /* Border Radius */
  --rounded: 4px;
  --rounded-sm: 2px;
  --rounded-md: 5px;
  --rounded-lg: 8px;
  --rounded-circular: 50%;
  /* Grid Sizes */
  --wh-1-2: 50%;
  --wh-1-3: 33.333333%;
  --wh-2-3: 66.666667%;
  --wh-1-4: 25%;
  --wh-2-4: 50%;
  --wh-3-4: 75%;
  --wh-1-5: 20%;
  --wh-2-5: 40%;
  --wh-3-5: 60%;
  --wh-4-5: 80%;
  --wh-1-6: 16.666667%;
  --wh-2-6: 33.333333%;
  --wh-3-6: 50%;
  --wh-4-6: 66.666667%;
  --wh-5-6: 83.333333%;
  --wh-1-12: 8.333333%;
  --wh-2-12: 16.666667%;
  --wh-3-12: 25%;
  --wh-4-12: 33.333333%;
  --wh-5-12: 41.666667%;
  --wh-6-12: 50%;
  --wh-7-12: 58.333333%;
  --wh-8-12: 66.666667%;
  --wh-9-12: 75%;
  --wh-10-12: 83.333333%;
  --wh-11-12: 91.666667%;
  /* Box Shadows */
  --shadow-sm: 0 -1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 -1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 4px rgba(0, 0, 0, 0.05), 0 5px 8px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 -1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.05), 0 3px 4px rgba(0, 0, 0, 0.05), 0 5px 8px rgba(0, 0, 0, 0.05), 0 16px 16px rgba(0, 0, 0, 0.05);
  /* Other Variables */
  --padding-x-sm: 15px;
  --padding-x-lg: 100px;
  --padding-x-xl: 18%;
  --padding-overlap: 50px;
  --padding-std-compact: 15px;
  --padding-std-padded: 20px;
  --font-default: "Roboto", sans-serif;
  --font-header: 'Great Vibes', cursive;
  --font-cinzel: 'Cinzel', serif;
}

html, body {
  color: var(--color-font);
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-size: var(--size-14);
  font-family: var(--font-default);
  background-color: var(--color-body2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, ::before, ::after {
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 15px;
  background-color: var(--color-body);
  font-family: var(--font-header);
  font-size: var(--size-16);
  font-weight: 500;
}

footer {
  width: 100%;
  text-align: center;
  padding: 10px;
  background-color: var(--color-grey-600);
  color: var(--color-base);
  font-size: var(--size-12);
}

h1, h2, h3 {
  /* font-size: var(--size-18); */
  margin-bottom: 15px;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex_jc_sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_jc_c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_ai_c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_fd_c {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.MainHeader {
  font-size: var(--size-16);
  font-family: var(--font-cinzel);
  margin: 85px 30px 30px 30px;
  border-style: solid;
  border-width: thin;
  padding: 30px;
}

.MainHeader_font_curly {
  font-family: var(--font-header);
  font-size: var(--size-48);
}

.MainHeader_text_setting {
  margin: 45px 0px;
}

.MainHeader_text_personname {
  margin: 30px;
}

.text_align_c {
  text-align: center;
}

.text_align_r {
  text-align: right;
}

.text_size_24 {
  font-size: var(--size-24);
}

.text_bold_600 {
  font-weight: 600;
}

.card {
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.card_white {
  background-color: var(--color-white);
}

.card_highlight {
  background-color: var(--color-highlight);
}

.fullname {
  font-family: var(--font-cinzel);
  font-size: var(--size-20);
  font-weight: 600;
  padding: 0px 30px 0px 30px;
}

.fullname_namapengantin {
  margin: 15px 10px;
}

iframe {
  border: 0;
  height: 300px;
}

img {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.photo {
  width: 100%;
  height: 100%;
}

.photo_iwana {
  width: 50%;
}

.photo_aklif {
  width: 50%;
}

.speechdiv {
  width: 100%;
}

.speechcard {
  background-color: var(--color-white);
  padding: 20px;
  margin-bottom: 15px;
  -webkit-box-shadow: 1px 1px 5px var(--color-grey-600);
          box-shadow: 1px 1px 5px var(--color-grey-600);
  border-radius: 10px;
}

.innercard {
  width: 100%;
}

em::before {
  content: open-quote;
}

em::after {
  content: close-quote;
}
/*# sourceMappingURL=style.css.map */
