#home-main-div {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

#home-main-pic {
    position: relative;
    width: 10em;
    margin-left: auto;
    margin-right: auto;
    padding-top: 2em;
}

#home-main-pic > img {
    position: relative;
    width: 10em;
    display: block;
    border-radius: 100px;

    margin-right: auto;
    margin-left: auto;

    /*-webkit-box-shadow: 7px 7px 40px 10px rgba(0,0,0,0.3);*/
    /*-moz-box-shadow: 7px 7px 40px 10px rgba(0,0,0,0.3);*/
    box-shadow: 0px 5px 30px 3px rgba(0,0,0,0.2);
}

#home-main-text {
    position: relative;
    padding-top: 50vh;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
    color: white;
}

#hi{
    font-size: 1.6em;
}

#home-name {
    font-size: 3em;
}

#home-tagline {
    margin-top: 0.5em;
    padding-bottom: 1.5em;
    font-size: 1.6em;
}

#down-arrow-div {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#down-arrow {
    position: relative;
    bottom: 0;
    font-size: 2.75em;
    color: white;
}

@media only screen and (min-width: 300px) and (max-width: 399px) {
    #home-name {
        font-size: 2.5em !important;
    }

    #home-tagline {
        font-size: 1.5em !important;
    }
}

@media only screen and (max-width: 299px) {
    #home-name {
        font-size: 2.25em !important;
    }

    #home-tagline {
        font-size: 1.2em !important;
    }
}

.test {
    animation: MoveUpDown 1s linear infinite;
    position: absolute;
    left: 0;
    bottom: 0;
}

@keyframes MoveUpDown {
    0% {
        top: 0;
    }
    50% {
        top: 10px;
    }
    100% {
        top: 0;
    }
}

