        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;
        }
        .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;
        }
        
        @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;
            }    
            .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;
            }
        }