header {
    display: flex;
    justify-content: space-between;
}

header a {
    text-decoration: none;
}

header h3 {
    font-size: 12px;
    color: rgb(139,139,139);
}

body {
    border-left: 15vw solid grey;
    border-right: 15vw solid grey;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0px;
}

nav {
    display: flex;
    justify-content: space-around;
    margin-top: 5px;
}

.generic-div {
    display: flex;
}

.generic-div img {
    width: 50%;
}


.generic-div-footer {
    display: flex;
    justify-content: space-around;
}

.social-div {
    display: flex;
    justify-content: space-between;
}

.social-div img {
    width: 30px;
    margin-left: 20px;
}

nav a {
    margin-top: 10px;
    text-decoration: none;
    font-size: 20px;
    color: rgb(139,139,139);
}

.generic-div-footer a {
    text-decoration: none;
    font-size: 12px;
    color: rgb(155,154,154);
}

.space-div {
    width: 2%;
}

.my-jumbotron {
    display: flex;
    justify-content: center;
    background-color: rgb(248,248,248);
    width: 100%;
    height: 650px;
}

.my-jumbotron h1 {
    color: rgb(75,122,152);
    font-size: 70px;
    margin-top: 20%;
}

.my-jumbotron h3 {
    color: rgb(130,130,129);
}

.my-jumbotron button {
    width: 80%;
    height: 20%;
    margin-left: 10%;
    margin-top: 15%;
    font-size: 40px;
    background-color: rgb(75,122,152);
    color: rgb(240,244,246);
}

.sub-text {
    margin-top: 10%;
    margin-left: 15%;
}

.margin-left {
    margin-left: 20%;
}

.uncommongoods-header {
    display: flex;
    justify-content: center;
}

.uncommongoods-header img {
    margin-bottom: -5px;
}

footer {
    display: flex;
    flex-direction: column;
}

footer h4 {
    font-size: 10px;
    color: rgb(150,149,150);
    margin-top: 10px;
}

footer a {
    color: rgb(140,140,140);
}

/* On screens that are 414px wide or less */
@media only screen and (max-width: 414px) {
    header {
        flex-direction: column;
        align-items: center;
    }

    body {
        display: flex;
        flex-direction: column;
    }

    nav {
        flex-direction: column;
        order: 1;
        margin-top: 5px;
    }

    .my-jumbotron {
        flex-direction: column;
        height: 200px;
    }

    .my-jumbotron h1 {
        font-size: 10px;
        margin-left: 60px;
        margin-top: 5px;
    }

    .my-jumbotron h3 {
        font-size: 5px;
    }

    .my-jumbotron button {
        font-size: 10px;
    }

    .generic-div {
        flex-direction: column;
        align-items: center;
    }

    

    .uncommongoods-header img {
        margin-bottom: -70px;
    }


    

    .generic-div-footer {
        order: 1;
        justify-content: center;
    }

    footer {
        order: 2;
    }
    
    .vr {
        display: none;
    }

    nav a {
        text-align: center;
        margin: 3px 0px;
        border-bottom: 1px solid black;
    }

    .my-hr-5 {
        order: 2;
    }

    .my-hr-4 {
        display: none;
    }


    .sub-text {
        margin-top: 10%;
        margin-left: 30%;
    }

    .margin-left {
        margin-left: 31%;
    }
}