.app_support_container {
  max-width: auto;
  margin: 20px auto;
  padding: 20px;
  background-color: #f7f7f7;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.app_support_container p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.app_support_container a {
  color: #007bff;
  text-decoration: none;
}

.app_support_container a:hover {
  text-decoration: underline;
}

.app_support_container div label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.app_support_container div input[type="text"],
.app_support_container div textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: #fff;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.app_support_container div input[type="text"]:focus,
.app_support_container div textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
  outline: none;
}

#verify-username {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
}

#verify-username:hover {
  background-color: #0056b3;
}

#verification-message {
  font-size: 14px;
  color: #555;
}

.app_support_container div .btn {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background-color: #28a745;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.app_support_container div .btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.app_support_container div .btn:hover:not(:disabled) {
  background-color: #218838;
}
.msg-flash-notice{
  color: #080;
  background-color: #24262b;
  font-size: 1.5rem;
  text-align: center;
  font-family: inherit;  
}

.msg-flash-alert{
  color: #a01;
  background-color: #24262b;
  font-size: 1.5rem;
  text-align: center;
  font-family: inherit;
}
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

:root {
  --sf-bg:          #0e1116;
  --sf-bg-alt:      #151a21;
  --sf-text:        #e8edf2;
  --sf-muted:       #98a2b3;
  --sf-accent:      #4cc9f0;
  --sf-border:      #232a34;

  --sf-radius:           16px;
  --sf-gap:              24px;
  --sf-padding-block:    28px;
  --sf-maxw:           1200px;

  --sf-link:        #d0e8ff;
  --sf-link-hover:  #ffffff;

  --sf-icon-size:         22px;
}

.site-footer, .site-footer * {
  box-sizing: border-box;
}

.site-footer {
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--sf-bg);
  color: var(--sf-text);
  border-top: 1px solid var(--sf-border);
  width: 100%;
}

.site-footer a {
  color: var(--sf-link);
  text-decoration: none;
}

.site-footer a:hover, .site-footer a:focus {
  color: var(--sf-link-hover);
}

.site-footer .sf-sections {
  margin-inline: auto;
  max-width: var(--sf-maxw);
  padding: var(--sf-padding-block) 20px;
  display: grid;
  gap: var(--sf-gap);

  /* default desktop; we override below for tablet/mobile */
  grid-template-columns: repeat(4, 1fr);
  transition: max-height 220ms ease, opacity 200ms ease;
}

.site-footer .sf-section {
  min-width: 0;
}

.site-footer .sf-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--sf-text);
}

.site-footer .sf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .sf-list li + li {
  margin-top: 8px;
}

.site-footer .sf-list a {
  color: var(--sf-muted);
}

.site-footer .sf-list a:hover {
  color: var(--sf-link-hover);
}

.site-footer .sf-branding-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.site-footer .sf-logo img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--sf-bg-alt);
  /* background: var(--red-color); */
  padding: 4px;
  border: 1px solid var(--sf-border);
}

.site-footer .sf-title-wrap {
  min-width: 0;
}

.site-footer .sf-title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

.site-footer .sf-subtitle {
  margin-top: 4px;
  font-size: 0.9rem;
  color: var(--red-color);
  font-style: italic;
}

.site-footer .sf-branding-desc {
  margin: 0 0 12px 0;
  font-size: 1.05rem;
  color: var(--sf-muted);
  line-height: 1.4;
}

.site-footer .sf-socials {
  display: flex;
  gap: 10px;
  padding: 0;
  margin: 10px 0 0 0;
  list-style: none;
}

.site-footer .sf-social-link {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--sf-bg-alt);
  border: 1px solid var(--sf-border);
}

.site-footer .sf-social-link i {
  font-size: var(--sf-icon-size);
}

.site-footer .sf-bottom {
  border-top: 1px solid var(--sf-border);
  background: linear-gradient(0deg, var(--sf-bg), var(--sf-bg));
  padding: 16px 20px;
}

.site-footer .sf-bottom, .site-footer .sf-bottom * {
  line-height: 1;
}

.site-footer .sf-copy {
  color: var(--sf-muted);
  margin: 0;
}

.site-footer .sf-legal {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

@media (min-width: 641px) {
  .site-footer .sf-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--sf-maxw);
    margin-inline: auto;
  }

  .site-footer .sf-legal {
    margin-top: 0;
  }
}

.site-footer .sf-mobile-toggle {
  display: none;
  width: 100%;
  background: var(--sf-bg-alt);
  color: var(--sf-text);
  border: 0;
  border-bottom: 1px solid var(--sf-border);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  gap: 10px;
  align-items: center;
}

.site-footer .sf-mobile-toggle .sf-toggle-icon::before {
  content: "☰";
  display: inline-block;
  transform: translateY(-1px);
  margin-right: 8px;
}

@media (max-width: 640px) {
  .site-footer .sf-mobile-toggle {
    display: inline-flex;
  }

  .site-footer .sf-sections {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 16px 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
  }

  .site-footer .sf-sections[data-open='true'] {
    max-height: 1500px;
    opacity: 1;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .site-footer .sf-sections {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 28px;
  }
}

@media (min-width: 1025px) {
  .site-footer .sf-sections {
    grid-template-columns: 1.5fr 1fr 1fr 1fr
  }
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: white;
  box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
}

.header-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.header-logo-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 0;
}

.header-logo {
  width: 100%;
  height: 100%;
}

.header-text {
  text-align: center;
}

.header-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.header-subtitle {
  font-size: 0.75rem;
  color: #e3342f;
  font-style: italic;
}

@media (min-width: 640px) {
  .header-flex {
    flex-direction: row;
  }

  .header-logo-wrapper {
    margin-right: 0.5rem;
  }

  .header-text {
    text-align: left;
  }
}

.navbar {
  display: none;
}

@media (min-width: 768px) {
  .navbar {
    display: flex;
    gap: 2rem;
  }

  .get-app-desktop {
    display: block;
  }
}

.nav-link {
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  color: #e3342f;
}

.get-app-desktop {
  display: none;
}

.get-app-button {
  background-color: #e3342f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.get-app-button:hover {
  background-color: #c53030;
}

.mobile-menu-button {
  display: inline-block;
  color: #718096;
  outline: none;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  background-color: white;
  border-top: 1px solid #e2e8f0;
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
}

.mobile-nav-link:hover {
  background-color: #f7fafc;
  color: #e3342f;
}

.mobile-app-button {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: #e3342f;
  color: white;
}

.mobile-app-button:hover {
  background-color: #c53030;
}
/* ====================== GOOGLE FONTS ====================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap");

/* ====================== VARIABLES CSS ====================== */
:root {
  --header-height: 3.5rem;

  --header-offset-mobile: var(--header-height);
  --header-offset-desktop: calc(var(--header-height) + 2rem);
  
  /* ====================== COLORS ====================== */
  /* Color mode HSL(hue, saturation, lihtness) */
  --black-color:         hsl(220, 24%, 12%);
  --black-color-light:   hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color:         #fff;
  --body-color:          hsl(220, 100%, 97%);
  --red-color:           #e71d36;

  --sh-bg:               #ffffff;
  --sh-text:             #111418;
  --sh-muted:            #4b5563;
  --sh-border:           #e5e7eb;
  --sh-surface:          #f6f7f9;
  --sh-surface-hover:    #eef1f5;
  --sh-hover:            #f9fafb;
  --sh-accent:           #0f62fe;

  /* ====================== Font and Typography ====================== */
  /* .5rem = 8px | 1rem = 16px */
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /* ====================== Font Weight ====================== */
  --font-regular: 400;
  --font-semi-bold: 600;

  /* ====================== z index ====================== */
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* ====================== Responsize typography ====================== */
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/* ====================== BASE ====================== 4:85 */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  padding-top: 56px;
  padding-top: var(--header-offset-mobile);
}

.header-body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

.header-body ul {
  list-style: none;
}

.header-body a {
  text-decoration: none;
}


/* ====================== REUSABLE CSS CLASSES ====================== */
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

/* ====================== HEADER ====================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--sh-bg);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);

  border-bottom: 1px solid var(--sh-border);
}

/* ====================== NAV ====================== */
.nav {
  height: var(--header-height);
}

/* .nav__logo, .nav__burger, .nav__close {
  color: white;
} */

.nav__burger, .nav__close {
  color: var(--sh-text) !important;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .sh-branding-top {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.header .sh-logo img {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--black-color-light);
  padding: 5px;
  border: 1px solid var(--black-color-lighten);
}

.header .sh-title-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header .sh-title {
  color: var(--sh-text);
  font-size: 1.05rem;
  font-weight: var(--font-semi-bold);
  white-space: nowrap;
}

.header .sh-subtitle {
  color: var(--red-color);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* .nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
} */

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger, .nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;

    background: var(--sh-surface);
    border-top: 1px solid var(--sh-border);
  }

  .nav__menu::-webkit-scrollbar {
    width: 0;
  }

  .nav__list {
    /* background-color: var(--black-color); */
    background-color: var(--sh-surface);
    padding-top: 1rem;
  }
}

.nav__link {
  /* color: var(--white-color); */
  color: var(--sh-text);
  /* background-color: var(--black-color); */
  background-color: var(--sh-bg);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__link:hover {
  /* background-color: var(--black-color-light); */
  background-color: var(--sh-hover);
}


/* Show Menu */
.expand-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show Icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/* ====================== DROPDOWN ====================== */
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, .dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  /* color: var(--white-color); */
  color: var(--sh-text);
  /* background-color: var(--black-color-light); */
  background-color: var(--sh-surface);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .2s ease, color .2s ease;

  box-shadow: 1px solid var(--sh-border);
}

.dropdown__link:last-child, .dropdown__sublink:last-child {
  border-bottom: 0;
}

.dropdown__link i, .dropdown__sublink i {
  font-size: 1.25rem;
  /* font-weight: initial; */
  color: var(--sh-muted);
}

.dropdown__link:hover, .dropdown__sublink:hover {
  /* background-color: var(--black-color); */
  background-color: var(--sh-surface-hover);
}

.dropdown__menu, .dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out, opacity .3s, top .3s;

  background: var(--sh-surface);
  border: 1px solid var(--sh-border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17,20,24,0.08);
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/* ====================== SUBMENU ====================== */
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--sg-bg);
}

/* ====================== BREAKPOINTS ====================== */
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }


  body {
    padding-top: 88px;
    padding-top: var(--header-offset-desktop);
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;

    background-color: transparent;
  }

  .nav__link:hover {
    background-color: transparent;

    color: var(--sh-text);
  }

  .dropdown__item, .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    /* transition: opacity .3s, top .3s; */
  }

  .dropdown__link, .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    /* position: absolute; */
    left: 100%;
    top: .5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    /* transition: top .3s; */
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    /* transition: top .3s; */
  }
  
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&disply=swap");

:root {
  --red-color: #e71d36;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.xheader-body {
  min-height: 100vh;
  /* background: url(/background.jpg) no-repeat; */
  background: black;
  background-size: cover;
  background-position: center;
}

.xheader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: .7rem 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.xheader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  backdrop-filter: blur(50px);
  z-index: -1;
}

/* 
.header-flex {
  display: flex;
  align-items: center;
  gap: .6rem;
} */

.xheader-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;

  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;

  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;

  -webkit-column-gap: .6rem;
          column-gap: .6rem;
}

.xheader-logo-wrapper {
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 12px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
}

.xheader-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  margin: auto;
}

.xheader-text {
  color: #000;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.xheader-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.xheader-subtitle {
  font-size: .9rem;
  font-weight: 515;
  font-style: italic;
  margin: 0;
  opacity: 0.85;
  color: var(--red-color);
}
/* 
.navbar {
  display: flex;
  flex-direction: row;
} */

.xnavbar a {
  font-size: 1.15rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2.5rem;
  
  /* display: inline-block; */
}

#xcheck {
  display: none;

  /* position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap; */
}

.xicons {
  position: absolute;
  right: 5%;
  font-size: 2.8rem;
  color: #000;
  cursor: pointer;
  display: none;
}

/* BREAKPOINTS */

@media (max-width: 992px) {
  .xheader {
    padding: .7rem 5%;
  }
}

@media (max-width: 858px) {
  .xicons { display: inline-flex; }

  #xcheck:checked~.icons #menu-icon { display: none; }
  .xicons #close-icon { display: none; }
  #xcheck:checked~.icons #close-icon { display: block; }

  .xnavbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 0;
    background: #e9ecef;
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
    transition: .3s ease;
  }

  /* .navbar {
    display: none;
    position: fixed;
    top: calc((0.7rem * 2) + 1.3rem);
    left: 0 !important;
    width: 100vw !important;
    flex-direction: column;
    align-items: stretch;
    background: #e9ecef;
    backdrop-filter: blur(50px);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    z-index: 100;
  } */

  #xcheck:checked~.navbar {
    height: 17.7rem;
    /* display: flex !important; */
  }

  .xnavbar a {
    display: block;
    block-size: 1.1rem;
    margin: 1.5rem 0;
    text-align: center;
    transform: translateY(-50px);
    transition: .3s ease;
  }

  /* .navbar a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    text-align: center;
    transform: translateY(-50px);
    transition: .3s ease;
  } */

  #xcheck:checked~.navbar a {
    transform: translateY(0);
    transition-delay: calc(.15s * var(--i));
  }
}

/* Iphone Breakpoint */
@media (max-width: 500px) {
  .xheader-title {
    font-size: 1.1rem;
  }

  .xheader-subtitle {
    font-size: .8rem;
  }
}

/* Samsung Andriod Breakpoint */
@media (max-width: 384px) {
  .xheader-title {
    font-size: 1.1rem;
  }

  .xheader-subtitle {
    font-size: .8rem;
  }
}
/* .only__container {
  display: flex;
  justify-content: center;
  align-items: center;
} */

.only__container {
  display: grid;
  place-items: center;
}
/*


 */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&disply=swap");

*{
  margin: 0;
  padding: 0;
}

body{
  min-height: 100vh;
}
