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

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

* {
  font-family: garamond;
  box-sizing: border-box;
 
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 100%;
}

.title > * {
  margin: 0;
}

#home {
  margin-top: 20px;
  gap: 40px;
}

#par {
  margin: 10px;
  padding: 5px;
  background-color: #eaf4f4;
  border: 1px solid black;
}

.home-button {
  width: 200px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bolder;
  line-height: 20px;
  padding: 10px 12px;
  text-align: center;
  transition: all 200ms;
  white-space: nowrap;
}

#beach-button {
  color: #4361ee;
  background-color: #ffe6a7;
  border: 3px solid #4361ee;
}

#beach-button:hover {
  color: #274c77;
  border: 3px solid #274c77;
  background-color: #e9d8a6;
}

#mountain-button {
  color: #432818;
  background-color: #70e000;
  border: 3px solid #432818;
}

#mountain-button:hover {
  color: #540b0e;
  border: 3px solid #540b0e;
  background-color: #38b000;
}

#home > .title {
  text-shadow: 2px 2px 2px #ffe6a7;
 	font-weight: lighter;
}

#or {
  font-size: 120%;
  font-weight: bolder;
}

.container > img {
  width: 90%;
}

#beach {
  height: 550px;
  background-color: #ffe6a7;
  color: #4361ee;
}

#beach > h2 {
  margin-top: 20px;
}

#mountain {
  height: 550px;
  background-color: #70e000;
  color: #432818;
}

#mountain > h2 {
  margin-top: 20px;
}

/* 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: lightblue;
}

#phone {
  height: 600px;
  width: 350px;
  /* Changing the style below will change the color of the phone. */
	background-color: black;
  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: steelblue;
  border: 2px solid black;
  color: white;
  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: lightblue;
}

#menu {
  float: right;
  clear: right;
  margin-top: 2px;
  padding: 8px;
  border: 2px solid black;
  /* 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: lightblue;
  border: 2px solid black;
  width: 75px;
  color: black;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

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

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

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

#pages {
  display: none;
}