body {
    font: 18px "Montserrat-Bold";
    line-height: 1.8;
    color: #000000;
    background-image: url('./Triangle_Background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 0px !important;
}

a {
  text-decoration: none;
}

@font-face {
  font-family: "Montserrat-Bold";
  src: url('./fonts/Montserrat-Bold.otf');
}

@font-face {
  font-family: "Montserrat-Light";
  src: url('./fonts/Montserrat-Light.otf');
}

.textcontainer {
  padding: 2% 10%;
}
.icon {
  font: 16px "Montserrat-Light";
  transform: scale(1);
  transition: transform 1s;
}
.icon:hover {
  transform: scale(1.05);
}

p {
  font-size: 16px;
}
.margin {
  margin-bottom: 30px;
}

a {
  color: #000000;
}

.container-fluid {
  padding: 0px;
}

nav {
  background-color: #ffffff; /* Sleek white background */
  color: #000000; /* Black text for visibility */
  padding: 10px 20px; /* Padding for better spacing */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: sticky; /* Navbar sticks to the top on scroll */
  top: 0;
  z-index: 1000; /* Keeps it above all content */
  border-bottom: 1px solid #e0e0e0; /* Subtle border for separation */
}

.navbar-nav {
  display: flex;
  justify-content: space-between; /* Aligns title and links */
  align-items: center; /* Vertically aligns items */
  gap: 15px;
}

.nav-title {
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 22px; /* Prominent title size */
  color: #333333; /* Darker gray for contrast */
  letter-spacing: 0.05em; /* Subtle modern spacing */
  margin-right: 20px;
  text-align: right;
  flex-grow: 1; /* Pushes the title to the right */
}

.nav-link {
  font-family: "Montserrat-Bold";
  font-size: 16px;
  text-transform: uppercase; /* Uppercase for modern look */
  color: #000000; /* Slightly lighter gray for better contrast */
  padding: 8px 16px;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #704214; /* Brown underline color */
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #704214; /* Brown hover text color */
}

.nav-link:hover::after {
  width: 100%; /* Underline expands to full width */
}

#btn {
  font-family: "Montserrat-Bold";
  font-size: 16px;
  padding: 10px 20px;
  color: #ffffff; /* White text for contrast */
  background-color: #704214; /* Brown button color */
  border: none;
  border-radius: 20px; /* Rounded button corners */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#btn:hover {
  background: linear-gradient(90deg, #d3be78, #e0e0e0); /* Light brown to gray gradient */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add depth on hover */
}

.row {
  margin: auto auto;
}

.flexrow {
  display: flex;
  justify-content: space-evenly;
}

.center-row {
  display: flex;
  justify-content: center;
}

code {
  color: #EEE7E8;
  font-family: 'Courier New', Courier, monospace;
}

.caption {
  color: gray;
  font-size: 16px;
  text-align: center;
  font-style: italic;
}

#aboutme {
  padding: 20px;
}
