@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

/******************************************************************************************************************************************************************************************
navbar styling
******************************************************************************************************************************************************************************************/
.navbar .max-width {
  width: 100%;
  background-color: #1A1A1A;
  padding: 10px;
  display: flex;
}

.navbar img {
  height: 15vh;
  margin-left: 50%;

}

.navbar ul {
  margin-left: auto;
  margin-right: 5vw;
  margin-top: auto;
  margin-bottom: auto;
}

.navbar li {
  list-style: none;
  display: inline-block;
  padding: 15px;
}

.navbar li a {
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: bold;
  color: white;
  font-size: 18px;
}

/******************************************************************************************************************************************************************************************
home styling
******************************************************************************************************************************************************************************************/
.hosts{
  margin: 20px 10vw 50px 10vw;
}
.hosts h1{
    font-family: 'Quicksand', 'Roboto', sans-serif;
    font-weight: bold;
    color: black;
    font-size: 40pt;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
    padding: 50px;
}

.hosts .host-people{
  display: flex;
}
.hosts .host-person{
  padding: 0px 10px 0px 10px;
}
.hosts .host-people img{
  width: 30vw;
  border-radius: 18pt;
}
.hosts .host-person .portrait{
  width: 30vw;
  margin: auto;
  display: block;
}
.hosts .host-people h2{
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: bold;
  color: black;
  font-size: 28px;
  text-align: center;
  padding: 20px;
}
.hosts .host-people p{
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: 300;
  color: black;
  font-size: 18px;
  text-align: center;
  padding-right: 5vw;
  padding-left: 5vw;
}
/******************************************************************************************************************************************************************************************
footer styling
****************************************************************************************************************************************************************************************/
.footer-content {
  width: 100%;
  background-color: #1A1A1A;
  padding: 50px;
  display: flex;
}

.footer-content img {
  height: 60px;
  padding: 0px 10px 0px 10px;
}

.footer-links {
  padding: 0px 50px 0px 50px;
  margin-left: auto;
  margin-right: 10px;
  margin-top: auto;
  margin-bottom: auto;
}

.footer-links li {
  list-style: none;
  display: inline-block;
  padding: 0px 20px 0px 20px;
}

.footer-content li a {
  font-family: 'Quicksand', 'Roboto', sans-serif;
  font-weight: bold;
  color: white;
  font-size: 18px;
}
