body {
  background-repeat: repeat;
  background-image: url("costume1.png");  
}  


.headerBox {
    background-color:cornflowerblue;
    width: 1200px;
    padding:10px;
    margin:auto;
    color: mintcream;
    text-align: center;
    border: 4mm ridge mintcream;
}
#gameView {
    width: 1200px;
    height: 900px;
    margin: auto;
    padding:10px;
    border: 4mm ridge mintcream;
    margin-top: 10px;
    background-repeat: repeat;
    background-image: url("grass.png");  
}

#robloxian {
    height: 200px; 
    position: relative;
    top: 450px;
    left: 600px;
}

#chat {
    width: 200px;
    height: 65px;
    position: relative;
    top: 175px;
    left: 550px;
    background-color: aliceblue;
    outline: 1mm dotted dodgerblue;
    display:none;
}

#robloxian:hover + #chat {
  display: block;
}

#schat {
    width: 200px;
    height: 65px;
    position: relative;
    top: 175px;
    left: 200px;
    background-color: aliceblue;
    outline: 1mm dotted green;
    display:none;
}

#snailImg:hover + #schat {
  display: block;
}
