/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
* {
  box-sizing: border-box;
}

/* body width is forced to maintain readability on mobile. Will be changed later!! */
body {
  min-height: 100vh;
  margin: 0;
  width: 1920px;
  color: black;
  font-family: Verdana;
  background-color: #f9f1de;
}

p {
  font-family: Arial;
}

/* Save this section for NAVIGATION only... */
.nav-container {
  display: flex;
  justify-content: center;
  margin: auto;
  height: 6vh;
  width: 40%;
  background-image: linear-gradient(#a8a8a8, #3f3f3f);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  font-size: 1.25em;
  color: white
}

nav > a {
  text-decoration: none;
  color: white;
}

/* Save this section for MAIN CONTENT only... */
.main-container {
  margin: 50px auto 30px auto;
  width: 40%;
}
main {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.welcome-banner {
  background-color: #496eb7;
  color: white;
  padding: 10px;
}

.content-container {
  display: flex;
  gap: 20px;
  background-color: #d2ddf4;
  color: #212121;
  line-height: 1.8;
}

.content-img {
  display: block;
  max-width: 256px;
  max-height: 256px;
  width: auto;
  height: auto;
}
  
#web-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Save this section for the BLOG only... */
.blog-text {
  margin: 0 auto auto auto;
  padding: 10px;
  background-color: #f7daaf;
  color: #212121;
  line-height: 1.8;
  text-indent: 2em each-line;
}

.blog-title {
  background-color: #db9225;
  color: white;
  padding: 5px;
  font-size: 1.4em;
}