/* 
	Default font size - 16px
*/

/* HTML Selectors */
body {
	background-color: #f2d2a2;
  background-image: url("https://codecraftworks.dev/web/cxjzMBrDyeAtJosbbnF5/assets/sand.jpg");
  background-size: 100%;
}

h1 {
	text-shadow: 3px 3px 10px gray;
}

h1,
h2 {
	text-align: center;
  font-family: "Cinzel", serif;
}

p {
	font-family: "Roboto", sans-serif;
  font-size: 1rem;
}

ul,
ol {
	display: inline-block;
}

video,
img {
	max-width: 100%;
}

/* IDs */
#intro,
#nasa {
	border: 2px solid black;
}
#aquatic {
	border: 2px solid blue;
  background-color: #a5edff;
  background: -webkit-linear-gradient(180deg,rgba(165, 237, 255, 1) 37%, rgba(116, 169, 207, 1) 83%);
  background: -moz-linear-gradient(180deg,rgba(165, 237, 255, 1) 37%, rgba(116, 169, 207, 1) 83%);
  background: linear-gradient(180deg,rgba(165, 237, 255, 1) 37%, rgba(116, 169, 207, 1) 83%);
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#A5EDFF",
    endColorstr="#74A9CF",
    GradientType=0
  );
}
#aquatic h2 {
	background: linear-gradient(0deg,rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  background-clip: text;
  color: transparent;
}
#aquatic h2:before,
#aquatic h2:after {
	content: "🌊";
}
#aqua-content {
	text-align: left;
}
#aqua-content img {
	float: right;
  padding: 1em;
}


#forest {
	border: 2px solid green;
  background-color: #c4ffa5;
  background: -webkit-linear-gradient(180deg,rgba(196, 255, 165, 1) 37%, rgba(143, 207, 112, 1) 83%);
  background: -moz-linear-gradient(180deg,rgba(196, 255, 165, 1) 37%, rgba(143, 207, 112, 1) 83%);
  background: linear-gradient(180deg,rgba(196, 255, 165, 1) 37%, rgba(143, 207, 112, 1) 83%);
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#C4FFA5",
    endColorstr="#8FCF70",
    GradientType=0
  );
}
#forest h2:before,
#forest h2:after {
	content: "🌲";
}
#forest-content {
	text-align: left;
}
#forest-content img {
	float: left;
  padding-right: 1em;
}

#btt {
	background-color: white;
  padding: 0.5em;
  display: inline-block;
  border-radius: 1em;
  border: 2px solid black;
  position: fixed;
  right: 10px;
  bottom: 50px;
}

#nav {
	background-color: #a08436;
  text-align: center;
  margin-bottom: 1em;
  position: sticky;
  top: 5px;
  z-index: 1;
}
#nav p {
	display: inline-block;
  margin: 0.5em;
}
#nav a {
	background-color: #e2c576;
  padding: 0.5em 2em;
  border: 2px #a88d45 solid;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1em;
  color: black;
}
#nav a:hover {
	background-color: #a88d45;
  border: 2px #e2c576 solid;
  color: white;
}
#nav a:active {
	background-color: white;
  color: black;
}

#nasa a:link {
	color: #3856c1;
}
#nasa a:visited {
	color: red;
}

/* Classes */
.box {
	background-color: white;
  text-align: center;
  padding: 0.5em;
  margin: 0 1em 1.5em;
  border-radius: 1em;
  box-shadow: 2px 2px 5px black;
}

.clearfix:after {
	content: "";
  clear: both;
  display: table;
}