@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&family=Open+Sans:wght@400;700&display=swap');

/* colors
	dark brown: #66171d;
	
	darkest red: #751517;
	darker than that: #731516;
	darker red: #991c1e;
	dark red: #cf2022;
	main red: #fe0000;
	next red: #E83334;
	next red after that: #F04F4D;
	salmon: #ff7f7e;
	light pink: #ff999a;
	lighter pink: #ffbfbf;
	super light pink: #ffd8d9;
	pinky white: #fef2f2;
	super duper light pink: #FEF5F2;

	light pastel purple: #AA99BD;
	purple: #A460B8;
*/

/* basics */

html {
	background-color: #FEF5F2;
}

body {
	font-family: 'Open Sans', sans-serif;
	margin: 0 auto;
	text-align: left;
	color: #66171d;
}

h1 {
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform: uppercase;
	margin-top: 0;
	margin-left: 9%;
	margin-right: 9%;
}

h2 {
	font-family: 'Open Sans Condensed', sans-serif;
	margin-left: 9%;
	margin-right: 9%;
}

h3 {
	font-family: 'Open Sans Condensed', sans-serif;
	text-transform: uppercase;
	margin-left: 9%;
	margin-right: 9%;
	text-align: center;
}

p {
	margin-left: 9%;
	margin-right: 9%;
	overflow-wrap: break-word; 
}

@media only screen and (min-width: 768px) {
  p {
    font-size: 1.2em;
  }
}

@media only screen and (min-width: 50px) {
  p {
    font-size: 1.2em;
  }
}

ul {
	margin-left: 9%;
	margin-right: 9%; 
}

@media only screen and (min-width: 768px) {
  li {
    font-size: 1.1em;
  }
}

@media only screen and (min-width: 50px) {
  li {
    font-size: 1.1em;
  }
}

/* nested list */
.sub {
	margin-left: 0;
	margin-right: 0;
}

a {
	text-decoration: none;
}

footer {
	display: block;
	background-color: #fef2f2;
	padding: 15px 0 15px 15px;
	text-align: center;
}

/* back to top 
    credit: https://codyhouse.co/gem/back-to-top/*/
.top-button {
  color: #ffbfbf;
  text-decoration: none;
  font-size: 1.5em;
  text-align: center;
  line-height: 210%;
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  white-space: nowrap;
  background: rgba(102, 23, 29, 0.8) 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #cf2022;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* introduction */

#intro {
	background-color: #fef2f2;
	height: 100vh;
	color: #cf2022;
}

#introText {
	padding: 15%;
	margin: auto;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

#title {
	text-align: center;
	font-size: 5.5em;
	letter-spacing: 0.10em;
}

#teamInfo {
	text-align: center;
	font-size: 1.3em;
	letter-spacing: 0.10em;
}

#down, #down a {
	display: block;
	margin: 0 auto;
	text-align: center;
	font-size: 1.2em;
	color: #cf2022;
}

#down a:hover {
	color: #cf2022;
	opacity: 0.3;
}

/* menu styles */
.menu {
	list-style-type: none;
	overflow: hidden;
	text-align: center;
	padding: 0;
}

.menu li {
	display: inline-block;
	text-align: center;
	margin: 0.2%;
}

.menu a {
	color: #cf2022;
}

.menu a:hover {
	color: #cf2022;
	opacity: 0.3;
}

/* suggestion styles */

.suggestions {
	padding: 3%; 
	border-bottom: dotted 0.2em #731516;
}

#one {
	background-color: #ffd8d9;
}

#two {
	background-color: #ffbfbf;
}

#three {
	background-color: #ff999a;
}

#four {
	background-color: #ff7f7e;
}

#five {
	background-color: #F04F4D;
}

#six {
	background-color: #E83334;
	color: #ffd8d9;
}

#seven {
	background-color: #cf2022;
	color: #ffd8d9;
}

#eight {
	background-color: #991c1e;
	color: #ffd8d9;
}

#nine {
	background-color: #751517;
	color: #ffd8d9;
}

/* specific suggestion styles */

.citation {
	color: #A460B8;
}

.citation:hover {
	color: #A460B8;
	opacity: 0.3;
}

.citation-dark {
	color: #AA99BD;
}

.citation-dark:hover {
	color: #AA99BD;
	opacity: 0.3;
}

img {
	width: 50%;
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	display: block;
}

/* responsive styles for img */

@media only screen and (min-width: 768px) {
  img {
    width: 70%;
  }
}

@media only screen and (min-width: 50px) {
  img {
    width: 70%;
  }
}

#ig_photos {
	text-align: center;
}

.square_img {
	width: 38%;
	display: inline-block;
}

.doodles {
	text-align: center;
}

.doodle_img {
	width: 50%;
}

.caption {
	text-align: center;
	font-family: 'Open Sans Condensed', sans-serif;
	font-style: italic;
	margin-top: 0;
	margin-bottom: 0;
}

table {
	font-family: 'Open Sans', sans-serif;
	margin-right: 9%;
	margin-left: 9%;
	border-collapse: collapse;
}

@media only screen and (min-width: 768px) {
  table {
    font-size: 1.2em;
  }
}

@media only screen and (min-width: 50px) {
  table {
    font-size: 1.2em;
  }
}

th, td {
	padding: 0.6%;
	border: 0.1em solid #ffd8d9;
}

tr:nth-child(even) {
	background-color: #ff7f7e;
}

#paypal {
	width: 40%;
}

#references {
	text-align: center;
}