/* **COLORS** */
:root {
  --white: #fff;
  --light-gray: #ccc;
  --gray: #a0a09f;
  --dark-gray: #605e5e;
  --darkest-gray: #2f2e2e;
  --black: #000;
  --primary: #967384;
  --secondary: #813b37;
  --tertiary: #d8c0be;
}

/* **FONTS** */
@font-face {
  font-family: Meow;
  src: url(MeowScript-Regular.ttf);
}

@font-face {
    font-family: MPlus;
    src: url(MPLUSRounded1c-Regular.ttf);
}

/* NavBar */
ul.navbar-nav {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: var(--secondary);
}

li.nav-item {
  float: right;
}

li.nav-item a.nav-link {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li.nav-item a:hover {
  background-color: var(--primary);
}

.nav-link {
  font-family: Meow;
  font-size: 25px;
  color: var(--tertiary) !important;
  float: right;
}

p, li, h3 {
    font-family: MPlus;
}

/* Intro */
#home {
  background-color: var(--tertiary);
}

.grid-container {
  display: grid;
  grid: 500px / auto auto auto;
  grid-gap: 10px;
  padding: 10px;
}

.grid-container > div {
  padding: 20px 0;
}

.item1, .item2, .item3 {
  margin: auto;
}

.title {
  font-family: Meow;
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 700 !important;
  margin-bottom: 0;
}

.coco {
  border-radius: 5%;
  width: 225px;
  height: 300px;
}

.link {
  color: var(--darkest-gray);
  font-weight: 900;
}

.link2 {
    color: var(--white);
    font-weight: 900;
}

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

/* **PARALLAX SCROLLING** */
.parallax {
  /* The image used */
  background-image: url("photo9.jpg");

  /* Set a specific height */
  min-height: 350px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* About */
.about {
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px;
}

.subtitle {
  font-family: Meow;
  font-size: 50px;
  font-weight: 700 !important;
  margin-bottom: 0;
}

/* **PARALLAX SCROLLING** */
.scroll {
  /* The image used */
  background-image: url("photo7.jpg");

  /* Set a specific height */
  min-height: 350px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Contact */
.contact {
  /* margin-top: 100px;
  margin-bottom: 100px;
  margin-left: 50px;
  margin-right: 50px; */
  background-color: var(--tertiary);
}

/* **FOOTER** */
footer {
  background-color: var(--darkest-gray);
  margin-top: 25px;
  width: auto;
  max-width: 1210px;
  padding: 0 15px;
}

.footer-title {
  color: var(--white);
  font-family: Meow;
  font-size: 45px;
}

.footer-text {
  color: var(--gray) !important;
}

.social {
  display: flex;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.fb {
  height: 20px;
  width: 20px;
}

.tw {
  height: 20px;
  width: 20px;
}

.ig {
  height: 20px;
  width: 20px;
}
