/*mobile view*/
body{
    margin: 0px;
}
#header-wrap{
  background-color:transparent;
  height:100px;
}
.background-div{
  background-color:transparent;
}
.background-div:hover{
    cursor: url("https://producezoo.com/all-assets/public_html-subdomain-assets/cursors/cursor2.png"), default;
}

#homeButton-div{
    position: fixed;
    left: 10px;
    top: 10px;
    width:100px;
    height:200px;
}
/*
a{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 2px;
    color: black;
    text-decoration:none;
    font-size: 1.5em;
    font-weight: bolder;
}

a:hover{
    cursor: url("../assets/cursors/cursor1.png"), pointer;
    color: chartreuse;
}*/

h1{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 2px;
    color: black;
    text-decoration:none;
    font-size: 1.5em;
    font-weight: bolder;
}
h2{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 1.5px;
    color: black;
    text-decoration:none;
    font-size: 1.2em;
    font-weight: bolder;
}
h3{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 1.2px;
    color: black;
    text-decoration:none;
    font-size: 1em;
    font-weight: bolder;
}
p{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 0.5px;
    color: gray;
}

a{
    font-family: 'Inconsolata', monospace;
    letter-spacing: 2px;
    color: black;
    text-decoration:none;
    font-size: 1.5em;
    font-weight: bolder;
}

a:hover{
    cursor: url("https://producezoo.com/all-assets/public_html-subdomain-assets/cursors/cursor1.png"), pointer;
    color: chartreuse;
}

.personalLink{
    color: magenta;
    letter-spacing: 1.5px;
    font-size: 1.5em;
}

#textbox{

    margin-left: 90px;/*formerly 70*/
    margin-right:50px;/*formerly 60*/
    line-height: 200%;
}

/*controls hover effects for div boxes*/

#message1{
    background-color: transparent;
}

#message1:hover{
    background-color: blue;
}

#message1:hover > p{
    color: white;
}

#message2{
    background-color: transparent;
}

#message2:hover{
    background-color: chartreuse;
}

#message2:hover > p{
    color: white;
}

#message3{
    background-color: transparent;
}

#message3:hover{
    background-color: red;
}

#message3:hover > a{
    color:white;
}

#message3:hover > h3{
    color:white;
}

.serif{
    color:black;
    font-family:Georgia, serif;
}

/*previous hover effects*/
/*.serif:hover{
    color:pink;
    font-weight: bold;
    cursor: url("../assets/cursors/cursor2.png"), default;
    
}
*/

/*custom cursors for text hover effects*/
/*paragraph1:hover{
    cursor: url("amoebaCursor1.png"), url("cursor2.png"), default;
}

paragraph2:hover{
    cursor: url("amoebaCursor2.png"), url("cursor2.png"), default;
}
*/


#welcome:hover{
    color:white;
    font-weight: bold;
}


#foot-div{
  height: 200px;
}

/*computers and tablets*/
@media only screen and (min-width: 700px){

  #homeButton-div{
    position: fixed;
    left: 36px;
    top: 36px;
    background-color:transparent;
  }
    
  #main-div{
    display: flex;
  }
  #textbox{
    margin-top: 0px;
    margin-left: 450px;
    margin-right:450px;
    line-height: 200%;
  }

}