        body, html {
            background-color: white;
        }
        /*.smallerbg {
            height: 40%;
            width: 100%;
            background-image: url('../images/starsbg.png');
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
        }*/
        .smallerbg {
            height: 40%;
            width: 100%;
            background: url('../images/bgcomponents/Moon.png') 120% 120% no-repeat, url('../images/bgcomponents/stars.png') center top no-repeat;
            background-size: 300px, cover;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .smallerbg a {
            font-size: 40px;
            color: white;
            font-weight: bold;
        }
        .search-input {
            height: 50px;
            width: 550px;
            padding: 0 50px;
            font-size: 17px;
            border: none;
            outline: none;
            background-color: #2c3e50;
            border-radius: 7px;
            color: white;
        }
        .intro {
            height: auto;
            width: 80%;
            padding: 10%;
            padding-top: 5%;
            padding-bottom: 5%;
            color: #2c3e50;
            font-size: 20px;
            display: flex;
            align-items: center;
        }
        .desc {
            height: auto;
            width: 90%;
            padding: 5%;
            display: flex;
            justify-content: space-evenly;
            align-items: center;
        }
        .desc:nth-child(even) {
            flex-direction: row;
        }
        .desc:nth-child(odd) {
            flex-direction: row-reverse;
        }
        .desc-left {
            display: flex;
            flex-direction: column;
            width: 40%;
            line-height: 30px;
            word-spacing: 10px;
            justify-content: flex-start;
            font-size: 15px;
            color: #2c3e50;
        }
        .desc-left a {
            font-size: 20px;
            color: #2c3e50;
            font-weight: bold;
        }
        .desc-right {
            height: auto;
            width: 40%;
            display: flex;
            justify-content: flex-end;
        }
        .create-acct {
            height: 50px;
            width: 150px;
            border: 2px solid #2c3e50;
            background: transparent;
            color: #2c3e50;
            margin-top: 50px;
            border-radius: 5px;
            font-size: 15px;
            cursor: pointer;
            font-weight: normal;
        }
        .create-acct:hover {
            opacity: 0.7;
        }
        .help-section, .faq-section {
            height: auto;
            width: 70%;
            padding: 5%;
            display: inline-flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .help-div {
            height: 200px;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 3px 8px 0 rgb(0 0 0 / 3%);
            justify-content: space-evenly;
            width: 300px;
            border: 1px solid #bbb;
            border-radius: 5px;
            margin: 20px 0;
            background-color: #f3f5f7;
        }
        .help-div strong {
            color: #545454;
            font-size: 20px;
        }
        .faq-question {
            height: auto;
            width: 100%;
            margin: 0 0 10px 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-evenly;
        }
        .faq-question b {
            font-weight: bold;
            color: #0e151d;
            font-size: 20px;
        }
        .faq {
          padding: 20px;
          width: 60%;
          margin: auto;
          position: relative;
          height: auto;
        }
        
        .faq-container {
          width: 100%;
          height: 100%;
        
        }
        
        .faq-label {
          cursor: pointer;
          width: 100%;
          padding: 10px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          background: transparent;
          border-radius: 5px;
        
        }
        
        .faq-label-text {
            color: #0e151d;
            font-weight: bold;
            font-size: 17px;
        }
        
        .faq-label-icon {
          padding: 2px 3px;
          background: #0e151d;
          border-radius: 6px;
          display: flex;
          justify-content: center;
          align-items: center;
        }
        
        .material-icons {
          color: white;
          transition: 0.3s ease;
        }
        
        .faq-answer {
          transition: 0.3s ease;
          margin-top: 15px;
          height: 0;
          border-radius: 6px;
          color: rgba(50 50 50);
          overflow: hidden;
        
        }
        .read-answer {
            transition: 0.3s ease;
            margin-top: 15px;
            height: auto;
            text-align: left;
            color: rgba(50 50 50);
            overflow: hidden;
        }
        .read-answer a {
            font-size: 15px;
        }
        .read-answer b {
            font-size: 15px;
        }
        .support-images {
            width: 70%;
            height: auto;
            margin: 50px 0;
        }
        .faq-answer-content {
          padding: 10px 0 10px 15px;
        }
        
        .active1 {
          background: #FFFFFF;
          border: 1px solid #0e151d;
          height: auto;
          margin-bottom: 25px;
        }
        .rotate{
          transform: rotate(180deg)
        }
        .global-label{
          width:100%;
          height:35px;
          border-bottom: solid 2px #222222;
          margin-bottom: 35px;
        }
        .global-label-text{
          font-size:18px;
          color:rgb(50, 50, 50);
        }
        @media only screen and (max-width: 600px) {
            .smallerbg {
                height: 30%;
                width: 100%;
                background: url('../images/bgcomponents/Moon.png') 120% 120% no-repeat, url('../images/bgcomponents/stars.png') center top no-repeat;
                background-size: 150px, cover;
                display: flex;
                justify-content: center;
                align-items: center;
            }
            .smallerbg a {
                font-size: 25px;
                color: white;
                font-weight: bold;
            }    
            .search-input {
                height: 50px;
                width: 80%;
                padding: 0 50px;
                font-size: 17px;
                border: none;
                outline: none;
                background-color: #2c3e50;
                border-radius: 7px;
                color: white;
            }
            .faq {
              padding: 20px;
              width: 80%;
              margin: auto;
              position: relative;
              height: auto;
            }
            .support-images {
                width: 100%;
                height: auto;
                margin: 50px 0;
            }
            .intro {
                height: auto;
                width: 80%;
                padding: 10%;
                padding-top: 5%;
                padding-bottom: 5%;
                color: #2c3e50;
                font-size: 13px;
                display: flex;
                align-items: center;
            }
            .desc {
                height: auto;
                width: 90%;
                padding: 5%;
                display: flex;
                justify-content: space-evenly;
                align-items: center;
                flex-direction: column-reverse;
            }
            .desc:nth-child(even) {
                flex-direction: column-reverse;
            }
            .desc:nth-child(odd) {
                flex-direction: column-reverse;
            }
            .desc-left {
                display: flex;
                flex-direction: column;
                width: 100%;
                line-height: 25px;
                word-spacing: 5px;
                justify-content: flex-start;
                font-size: 13px;
                color: #2c3e50;
            }
            .desc-right {
                height: auto;
                width: 80%;
                margin-bottom: 30px;
                display: flex;
                justify-content: flex-end;
            }
            .footer-container a {
                font-size: 13px;
                color: #b5bec7;
            }
            .copyright {
                height: 50px;
                width: 100%;
                font-size: 13px;
                background-color: #0e151d;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: bold;
            }
        }