@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
  font-family: "EB Garamond", serif;
  color: #1b1b1b;
  text-decoration: none;
}

h1{
  letter-spacing: -.1rem;
}

body {
  background-color: #f1efe7;
  width: 100vw;
  margin: 0 auto;
}

#logo{
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
}

.navbar{
  height: 75px;
  margin: 0;
  padding: 0 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #d4ceb5;
}

ul{
  list-style-type:none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.navlink{
  padding: 0 15px;
  font-size: 1.5rem;
}

.navlink, a{
  display: flex;
  flex-direction: row;
  align-items: center;
}

#page-container{
  width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-self: center;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

#tube-logo, #insta-logo{
  width: 1rem;
  height: 1rem;
}

.blackBoldBtn{
  background-color: #1b1b1b;
  padding: 5px 20px;
  margin: 10px 0;
  font-size: 1.5rem;
  color: #f1efe7;
  font-weight: 700;
  letter-spacing: -.05rem;
  size: auto;
}

footer{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

}

.introCard{
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  text-align: left;
  height: 150px;
  justify-content: center;
  justify-items: center;
}

.blogCard1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.cardText{
  padding: 15px;
}

.blogCard1 img{
  height: 200px;
}

@media only screen and (max-width: 1200px) {
  .navbar{
    background-color: lightblue;
    flex-direction: column;
    height: auto;
    padding: 15px 0;
  }
  ul{
    flex-direction: column;
  }
}