/* 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-color: white;
  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: #F0F0F0;
  height: 80px;
  align-items: center;
  justify-content: center;
}

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

.nav-txt:hover {
  cursor: default;
}

.main-container {
  display: flex;
  background-color: #D9D9D9;
  height: fit-content;
  min-height: 550px;
  justify-content: center;
  row-gap: 20px;
}

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

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

small {
  font-size: 0.6em;
}

footer {
  display: flex;
  background-color: #F0F0F0;
  justify-content: center;
  align-items: center;
  gap: 35px;
  color: #9a695a;
  font-size: 16px;
  height: 60px;
}

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

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

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

/*Blog stuff*/
#alt-title-container {
  display: flex;
  background-color: #D9D9D9;
  height: 130px;
  align-items: center;
  justify-content: center;
}

.blog-post {
  display: flex;
  height: 240px;
  width: stretch;
}

.b-thumbnail {
  background-color: #1E1E1E;
  height: auto;
  width: 500px;
}

.b-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b-info {
  display: flex;
  width: stretch;
  height: inherit;
  flex-direction: column;
}

.b-info p {
  margin: 0px;
}

.b-info a {
  color: white;
}

.b-info a:hover {
  color: blue;
}

.b-date {
  box-sizing: border-box;
  padding: 15px 30px;
  font-size: 15px;
  background-color: #9C9C9C;
  height: 45px;
}

.b-title {
  box-sizing: border-box;
  padding: 15px 30px;
  font-size: 30px;
  color: white;
  background-color: #4A4A4A;
  height: 70px;
}

.b-desc {
  box-sizing: border-box;
  padding: 15px 30px;
  background-color: #9C9C9C;
  font-size: 16px;
  height: 125px;
  overflow: wrap;
}