/* This is the CSS for the ID used on page 2. */
#enjoy {
  font-size: 24px;
  color: black;
}

/* Feel free to add more CSS here! */

p {
  font-family: Comic Sans MS;
}




/* The CSS below is for the way the website and app look. Be careful when making changes! */

body {
	/* Changing the style below will change the color of the background. */
  background-color: antiquewhite;
}

#phone {
  height: 600px;
  width: 350px;
  /* Changing the style below will change the color of the phone. */
	background-color: teal;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  margin: auto;
  position:relative;
}

#menucontainer {
  position: absolute;
  right: 10px;
  padding: 0;
  margin: 0;
  z-index: 1;
}

#collapsemenu {
  float: right;
  /* Changing the style below will change the color of the menu button. */
  background-color: lightsteelblue;
  border: 2px solid teal;
  color: seashell;
  margin: 0;
  text-align: center;
  text-decoration: none;
  width: 60px;
  height: 30px;
  display: inline-block;
  font-size: 16px;
  border-radius: 0px 0px 0px 10px;
  font-weight: bold;
}

#collapsemenu:active {
  background-color: lightskyblue;
}

#menu {
  float: right;
  clear: right;
  margin-top: 2px;
  padding: 8px;
  border: 2px teal;
  /* Changing the style below will change the color of the menu background. */
  background-color: steelblue;
  border-radius: 10px;
  color: white;
  display: none;
}

.menubutton {
  /* Changing the style below will change the color of the menu buttons. */
  background-color: lightsteelblue;
  border: 3.5px solid teal;
  width: 75px;
  color: black;
  font-weight: italicized;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
}

.menubutton:active {
  background-color: white;
}

#screen {
  height: 550px;
  width: 350px;
  /* Changing the style below will change the color of the screen. */
  background-color: lightcoral; 
  /* Changing the style below will change the default color of the text on the screen. */
  color: black;
  margin: 0px;
  display: inline-block;
}

#decorationbutton {
  position: absolute;
  bottom: 5px;
  left: 160px;
}

#pages {
  display: none;
}