body {
    height: 100vh;
    background: url("Images/Backgrounds/Gentry.jpg");
    background-size: 100%;
    justify-content: center;
    align-items: center;
    font-family: times;
}

header {
  color: darkred;
  background-color: tan;
  text-align: center;
  padding: 1%;
  border: 10px solid darkred;
  width: 35%;
  margin: 5% 1% 1% 30%;
}

main {
  display: flex;
  border: 3px solid darkred;
  background-color: black;
  width: 80%;
  margin: 0 0 0 10%;
}


section {
  color: black;
  background-image: linear-gradient(to bottom, antiqueWhite, scarlet);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  border: 5px solid goldenrod;
  padding: 1%;
  margin: 1%;
  flex: 5;
  text-align: center;
}

article {
  flex: 1 1%;
  color: darkred;
  padding: 1%;
  margin: 1%;
  border: 10px solid darkGoldenRod;
  background-color: antiqueWhite;
  text-align: left;
}

nav {
  color: darkred;
  display: flex;
  flex: 0.5;
}

footer {
  color: darkred;
  background-color: antiqueWhite;
  padding: 10px;
  border: 10px solid darkGoldenRod;
  margin: 10px 10px 0 275px;
  width: 800px;
}

aside {
  color: black;
  background-color: antiqueWhite;
  border: 10px darkGoldenRod;
  padding: 10px;
  height: 550px;
  flex: 1;
  overflow-y: scroll;
}


a {
  color: red;
  text-decoration: none;
}

a.highlight {
  color: red;
}

a.highlight:hover,
a.highlight:focus {
  color: darkred;
  text-decoration: none;
}

a:hover,
a:focus {
  color: darkred;
  text-decoration: none;
}

button:hover,
button:focus {
  background-color: crimson;
  color: darkred;
}

button {
  color: red;
  background-color: darkred;
  font-size: 1em;
  margin: 5px;
  font-family: verdana;
}

.tabs-container {
    width: 80%;
    background: tan;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0% 0% 0% 5%;
}
.tabs {
    display: flex;
    border-bottom: 2px solid crimson;
}
.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}
.tab.active {
    border-bottom: 3px solid crimson;
    color: darkred;
}
.tab-content {
    color: darkred;
    display: none;
    padding: 20px 10px;
    animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}