*,
::after,
::before {
  box-sizing: border-box;
}

:root {
  /* Colors */
  --primaryColor: #9e572d;
  --primaryColor-50: rgba(229, 107, 111, 0.5);

  /* Fonts */
  --small-text: 0.875rem;

  /* Other */
  --letterSpacing: 0.1rem;
  --borderRadius: 0.25rem;
  --max-width: 1170px;
}

/* HTML Elements */

html {
  font-size: 100%;
} /*16px*/

body {
  background-color: #3a1509;
  color: #b37b55;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

main {
  flex-grow: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 1.38rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  letter-spacing: var(--letterSpacing);
}

h1 {
  margin-top: 0;
  font-size: 3.052rem;
}

h2 {
  font-size: 2.441rem;
}

h3 {
  font-size: 1.953rem;
}

h4 {
  font-size: 1.563rem;
}

h5 {
  font-size: 1.25rem;
}

small,
.text-small {
  font-size: var(--small-text);
}

a {
  color: #fff;
  text-decoration: none;
  letter-spacing: var(--letterSpacing);
}

a,
button {
  line-height: 1.15;
}
button:disabled {
  cursor: not-allowed;
}
ul {
  list-style-type: none;
  padding: 0;
}

.head {
  background: red;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Index Page Styling */

/* Headings */

.big-heading {
  font-weight: 900;
  font-size: 3.5rem;
  line-height: 1.5;
}

.smaller-heading {
  font-size: 3rem;
  line-height: 1.5;
}

/* Containers */

.container-fluid {
  padding: 7% 15%;
}

.navbar-container {
  padding: 3% 15%;
}

.title-heading-box {
  display: flex;
  align-items: center;
}

.title-image-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Section */

#homepage_main .container-fluid {
  padding: 1% 15% 7%;
  text-align: left;
}

/* Navigation Bar */

.navbar {
  padding: 0 0 0rem;
}

.navbar a.link-active {
  text-decoration: underline;
}

.navbar-brand {
  font-family: 'Ubuntu', sans-serif;
  color: bisque;
  font-size: 2rem;
  font-weight: bold;
}

.navbar-brand:hover {
  color:rgb(229, 107, 111);
}

.nav-item {
  padding: 0 18px;
}

.nav-link {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Start/Join Call Buttons */

.call-btn {
  margin: 5% 3% 5% 0;
}

/* Main Image */

.main-page-image {
  width: 100%;
  border-radius: 50%;
  padding: 5% 0;
}

/* Description paragraph */

#description {
  padding-top: 3%;
  text-align: center;
}

/* Footer */

.footer-container {
  padding: 0.5% 15%;
}

.copyright {
  font-size: 0.8rem;
  margin: 0;
}

/* Feedback Page Styling */

#feedback_main .container-fluid {
  padding: 3% 15% 7%;
}

.feedback-heading {
  font-size: 3rem;
  margin: 0;
}

.form-container {
  margin: 0;
  padding-top: 5rem;
  }

.form-inputs {
  display: grid;
  justify-items: center;
}

.text-inputs {
  display: grid;
  justify-items: center;
  flex-direction: column;
  margin-bottom: 1rem;
  width:40vw;
}

#message {
  height:20vh;
}


/* Media Queries */

/* Medium Screens */

@media (min-width: 992px) and (max-width: 1199px) {
  .nav-item {
    padding: 0 17px;
  }
  
  .nav-link {
    font-size: 1rem;
  }
}

@media (max-width: 991px) {
  .title-heading-box {
    text-align: center;
  }
}

/* Small Screens */

@media (max-width: 576px) {
  
  .navbar-brand {
    font-size: 1.25rem;
  }

  .big-heading {
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.5;
  }
  
  .smaller-heading {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  #feedback_main .container-fluid {
    padding: 15% 15% 7%;
  }

  .feedback-heading {
    font-size: 1.8rem;
  }

  .text-inputs {
    width: 70vw;
  }
}

@media (max-width: 460px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
}

@media (max-width: 360px) {
  .navbar-brand {
    font-size: 1.25rem;
  }
}

@media (max-width: 335px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .big-heading {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1.5;
  }

  .smaller-heading {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
