/* Link stuff */
a {
  outline-color: transparent;
  transition: all 0.1s;
}

a:link {
  text-decoration: none;
  color: #ec615c;
}

a:visited {
  color: #ec615c;
}

a:focus {
  color: #fda269;
}

a:hover {
  text-decoration: none;
  color: #fda269;
}

a:active {
  color: #fda269;
}

/*website stuff*/

:root {
  color: #803706;
}

html {
  scrollbar-color: #ec615c rgba(0, 0, 0, 0.0);
}

body {
  background: white;
  background-size: 100%;
  font-family: Verdana;
  margin: 60px 140px;
}

#title-container {
  display: flex;
  background-color: #D9D9D9;
  height: 175px;
  align-items: center;
  justify-content: center;
}

#nav-container {
  display: flex;
  background-color: #fbe9d9;
  height: 80px;
  align-items: center;
  justify-content: center;
}

.nav-txt {
  display: flex;
  justify-content: center;
  column-gap: 90px; 
  margin: 0px 220px;
  color: #fda269;
  font-size: 20px;
  text-align: center;
}

.main-container {
  display: flex;
  flex-flow: column;
  box-sizing: border-box;
  background-color: #fbe9d9;
  height: fit-content;
  min-height: 550px;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  padding: 30px;
}

.margin {
  background-color: #fbe9d9;
  height: 60px;
}

.emoji {
  width: 20px;
  margin: 0px 5px;
}

small {
  font-size: 0.6em;
}

footer {
  display: flex;
  background-color: #fbe9d9;
  justify-content: center;
  align-items: center;
  gap: 35px;
  color: #803706;
  font-size: 16px;
}

#go-back {
  text-align: center;
  align-self: center;
}

#sample-imgs {
  display: flex;
  flex-flow: row;
  height: auto;
  width: stretch;
  justify-content: center;
}

#textbox {
  justify-content: center;
  
}

/*"Incomplete Site" warning*/
#warning-container {
  color: #f7854e;
  background-color: #fbe9d9;
  height: 200px;
  align-content: center;
}

#warning-container h1 {
  font-size: 26px;
  text-align: center;
}

#warning-container p {
  font-size: 16px;
  text-align: center;
}