html, body {
  overflow-x: hidden;
}


body { font-family: 'Manrope', sans-serif; }
.glass-header {
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.8);
}

.iphone-frame{
  border-width: 12px;
  border-style: solid;
  border-color: var(--primary);          /* antes: border-primary */
  border-radius: 3rem;                   /* rounded-[3rem] */
  height: 600px;
  width: 280px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); /* shadow-2xl */
  overflow: hidden;
  background: #fff;
  margin-left: auto;                     /* mx-auto */
  margin-right: auto;
  position: relative;
  /* ring-1 ring-white/20 */
  box-sizing: border-box;
  outline: 1px solid rgba(255,255,255,.2);
  outline-offset: 0;
}

.iphone-notch{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);           /* -translate-x-1/2 */
  width: 8rem;                           /* w-32 */
  height: 1.5rem;                        /* h-6 */
  background: var(--primary);            /* bg-primary */
  border-bottom-left-radius: 1rem;       /* rounded-b-2xl */
  border-bottom-right-radius: 1rem;
  z-index: 20;
}


.material-symbols-outlined {
  background: none;
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24,
  
}
