html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins';
      overscroll-behavior: none;   /* Chrome/Edge/Firefox; Safari 16.4+ */
  overflow-x: hidden; 
}

.white-text {
    color: rgba(255, 255, 255, 1);
}
.smaller-top-margin {
    margin-top: 8px;
}
.no-bottom-margin {
    margin-bottom: 0;
}
.no-top-margin {
    margin-top: 0;
}
.blue-text {
    color: rgba(0, 157, 255, 1);
}

.black-text {
    color: black;
}

.gray-text {
    color: rgba(48, 48, 48, 1);
}

.title {
    font-weight: 600;
    font-size: 64px;
}
.smaller-title {
    font-weight:600;
    font-size: 48px;
}

/* Mobile Responsive Typography */
@media (max-width: 768px) {
    .title {
        font-size: 40px;
    }
    
    .smaller-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 32px;
    }
    
    .smaller-title {
        font-size: 28px;
    }
}

