/*assignment two css*/
/*this is as far as I can go, the appearance of my webpage is not exactly as seen in the figma design*/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    display: grid;
}

body{
    background-color: black;
    height: 3000px;
    width: 3000px;
}


/*mobile screens*/

.huckleberry-mobile{
    margin: 100px
}

div .top-box{
    width: 390px;
    height: 382px;
    background-color: white;
    border: 1px solid lightskyblue;
}

#span-green, #green{
    color: green;
}

header{
    font-family: 'Montserrat', sans-serif;
}

#huckleberry{
    padding-bottom: 30px;
    padding-left: 20px;
    padding-top: 100px;
    font-size: 25px;
}

p{
    font-family: "Times New Roman", serif;
    font-size: 18px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

#wealth{
    width: 320px;
    height: 80px;
    font-size: 25px;
    background-color: gold;
    margin-left: -8px;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 10px;
}

div .lower-box{
    width: 390px;
    height: 382px;
    background-color: white;
    border-top: 60px solid darkgray;
    padding-top: 10px;
}



/*screen for tablets*/

.huckleberry-tablet{
    margin: 100px;
}

div .top-box-tabs{
    width: 768px;
    height: 382px;
    background-color: white;
    border: 1px solid lightskyblue;
}

#span-green-tabs, #green-tabs{
    color: green;
}

header{
    font-family: 'Montserrat', sans-serif;
}

#huckleberry-tabs{
    padding-bottom: 30px;
    padding-left: 20px;
    padding-top: 100px;
    font-size: 25px;
}

p{
    font-family: "Times New Roman", serif;
    font-size: 18px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

#wealth-tabs{
    width: 320px;
    height: 80px;
    font-size: 25px;
    background-color: gold;
    margin-left: -8px;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 10px;
}

div .lower-box-tabs{
    width: 776px;
    height: 456px;
    background-color: white;
    border-top: 60px solid darkgray;
    padding-top: 10px;
}


/*screen for desktops*/

.huckleberry-desktop{
    margin: 100px;
}

div .top-box-desktop{
    width: 1280px;
    height: 382px;
    background-color: white;
    border: 1px solid lightskyblue;
}

#span-green-desktop, #green-desktop{
    color: green;
}

header{
    font-family: 'Montserrat', sans-serif;
}

#huckleberry-desktop{
    padding-bottom: 30px;
    padding-left: 20px;
    padding-top: 100px;
    font-size: 25px;
}

p{
    font-family: "Times New Roman", serif;
    font-size: 18px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

#wealth-desktop{
    width: 320px;
    height: 80px;
    font-size: 25px;
    background-color: gold;
    margin-left: -8px;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 10px;
}

div .lower-box-desktop{
    width: 1280px;
    height: 450px;
    background-color: white;
    border-top: 60px solid darkgray;
    padding-top: 10px;
}


