/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


body {
  background-image: url('https://shophop.neocities.org/rainbow.png');
  color: white;
  font-family: Verdana;
}

#container {
  display: flex;
  align-items: center;
  justify-content: center;
  
}

#header {
  border: 5px solid #875E4D;
  background-image: url('https://shophop.neocities.org/Shophop_Word_art.png');
  padding: 0px; /* Gernal size excluding the words */
  margin: 20px; /* The space between the top */
  width: 900px;
  height: 237px;
}

* {
  box-sizing: border-box;
}

clearfix::after {
  content: "";
  clear: both;
  display: table;
  box-sizing: border-box;
  border: 5px brown;
}

#box {
  float: right;
  border: 5px solid #875E4D;
  background-color: pink;
  padding: 0px 20px; /* Gernal size excluding the words */
  margin-top: 10px; /* The space between the top */
  width: 675px;
  height: 400px;
  clear: right;
}

#side {
  float: left;
  border-top: 5px solid #875E4D;
  border-right: none;
  border-bottom: 5px solid #875E4D;
  border-left: 5px solid #875E4D;
  background-color: pink;
  padding: 15px 20px;
  margin-top: 10px;
  width:225px;
  height: 400px;
}
  
#ribbon {
    background-color: pink;
    width:900px;
    height:36px;
    clear: left;
}

#verse {
  float: right;
  border: 5px solid #875E4D;
  background-color: pink;
  padding: 15px 20px; /* Gernal size excluding the words */
  margin: 0px; /* The space between the top */
  width: 50%;
  height: 350px;
  clear: right;
}

#music {
  float: left;
  border-top: 5px solid #875E4D;
  border-right: none;
  border-bottom: 5px solid #875E4D;
  border-left: 5px solid #875E4D;
  background-color: pink;
  padding: 15px 20px;
  margin: 0px;
  width:50%;
  height: 350px;
}
