/* 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." */


/* FONT FACES */

/* Goudy Old Style */
  /* Regular */
@font-face {
  font-family: "GoudyOldStyle";
  src: url("GOUDOS.woff2") format("woff2"),
       url("GOUDOS.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "GoudyOldStyle";
  src: url("GOUDOSB.woff2") format("woff2"),
       url("GOUDOSB.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Italic */
@font-face {
  font-family: "GoudyOldStyle";
  src: url("GOUDOSI.woff2") format("woff2"),
       url("GOUDOSI.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}


/* Helvetica */
  /* Regular */
@font-face {
  font-family: "Helvetica";
  src: url("Helvetica.woff2") format("woff2"),
       url("Helvetica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: "Helvetica";
  src: url("Helvetica-Bold.woff2") format("woff2"),
       url("Helvetical-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* BODY FORMATTING */
body {
  background-image: url(Memphis.jpg);
  background-color: #F3F2ED;
  background-size: auto;
  background-repeat: repeat;
  background-attachment: fixed;
  color: #333130;
  font-family: Helvetica, Arial, sans-serif;
  margin: 0;
}


/* TEXT FORMATTING */
h1 {
  font-family: Helvetica, Arial, sans-serif;
}
h2 {
  font-family: Helvetica, Arial, sans-serif;
}
h3 {
  font-family: Helvetica, Arial, sans-serif;
}

p {
  font-family: GoudyOldStyle, serif;
  font-size: clamp(18px, 2.2vw, 25px);
  margin-bottom: 0;
}

ul {
  margin-top: 0;
}

li {
  font-family: GoudyOldStyle, serif;
  font-size: clamp(15px, 2vw, 20px);
}

td {
  font-family: GoudyOldStyle, serif;
  font-size: clamp(15px, 2vw, 20px);
  padding: 3px;
}

  .Sans {
    font-family: Helvetica, sans-serif;
  }
  
  .SmallText {
    font-family: Helvetica, sans-serif;
    font-size: clamp(12px, 2vw, 14px);
  }


/* LINK FORMATTING */
/* unvisited link */
a:link {
  color: #333130;
}

/* visited link */
a:visited {
  color: black;
}

/* mouse over link */
a:hover {
  color: #854D23;
}

/* selected link */
a:active {
  color: #854D23;
}


/* NAVIGATION BAR */
/* Menu full section background color */
#Menu {
  background-color: #854D23;
  display: flex;
  justify-content: center;
}

/* TopNav Element */
.topnav {
  background-color: #EDEDE5;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 80%;
  border: 4px solid #854D23;
  border-radius: 20px;
  
  flex-wrap: wrap;       /* allow links to move to next line */
  gap: 0px;
}

.topnav a {
  color: #854D23;
  text-align: center;
  padding: 0.4em 1em;
  text-decoration: none;
  font-size: clamp(14px, 1.5vw, 22px);
  font-weight: bold;
}

.topnav a:hover {
  background-color: #C49242;
  color: #EDEDE5;
}

.topnav .active {
  background-color: #A96736;
  color: #EDEDE5;
}

/* Page Content */
/* PAGE TITLE AND DESCRIPTION */
#Content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  
  width: 60%;
  margin: auto;
  margin-top: 0;
  padding: 3%;
  
  background-image: url(/Paper.jpg);
  background-color: #EDEDE5;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 5px 10px black;
}

#Content h1 {
  margin: 5px;
  padding: 0;
}

#Content p {
  margin: 0;
  padding: 0;
}



/* MOBILE LAYOUT */
@media (max-width: 700px) {
  #Content {
   width: 90%;
   margin: auto;
   margin-top: 20px;
   text-align: center;
  }
}

.desc {
  text-align: left;
  margin-left: 0;
  padding-left: 5%;
  padding-right: 5%;
}




footer {
  background-color: #854D23;
  color: #EDEDE5;
  padding-top: 1px;
  padding-bottom: 1px;
  margin: 0;
}
