:root {
    --font-color-pink: lightpink;;
    --border-color: #222;
    --background-light: rgba(0, 0, 0, 0.6);
    --background-dark: rgba(0, 0, 0, 0.9);
  }

body {
    font-family: "Montserrat", cursive;
    font-size: 1.6rem;
    color: var(--font-color-white);
    background-color: var(--background-light);
  }

/*     Header     */

header {
    font-size: 1.4rem;
    text-align: center;
    color: var(--font-color-pink);
  }

  .navbar button {
      height: 5%;
      background-color: var(--font-color-pink);
      width: 10%;
      height: 40px;
      border-radius: 10%;
      margin-bottom: 2%;
      color: var(--background-light);
      font-weight: 700;
      font-size: 14px;
      outline: none;
  }

  /*     Home Page      */

  .home {
    height: 600px;
  }
  
 .home img {
    display: block;
    width: 45%;
    height: 450px;
    margin-left: 20%;
  }

  #main {
    height: 100%;
  }

  .home  {
    display: flex;
  }

  .home p {
      margin-left: 30%;
      width: 100%;
  }

  .paraItem {
      margin-top: 8%;
      color: lightpink;
      text-align: center;
  }

  .para {
    background-color: var(--background-dark);
    height: 60px;
    border: 1px solid black;
    width: 200px;
    padding-top: 20px;
    font-weight: 900;
  }

  .para2 {
    font-size: 40px;
    font-weight: 700;
  }


/*     Menu Page      */

.menu {
    color: var(--font-color-pink);
    display: grid;
    grid-template-columns: 30% 30%;
}

.menuItem {
    display: flex;
    flex-direction: column;
    margin-left: 85%;
    width: 50%;
}

.menuItem h1 {
  font-size: 20px;
}

.menuItem img {
    width: 250px;
    height: 250px;
}

.menuItem p {
    font-size: 15px;
    width: 230px;
}


/*     Contact Page      */

.contact {
  height: 900px;
  width: 100%;
  color: var(--font-color-pink);
  font-size: 18px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contactItems {
  height: 820px;
  width: 50%;
  background-color: var(--border-color);
  margin-top: 30px;
  
}

.contactItems h1 {
  margin-top: 30px;
}

.contactItems img {
  width: 60%;
  height: 45%;
}

/*     Footer     */

.footer {
  display: flex;
  justify-content: center;
  background-color: var(--background-dark);
  color: var(--font-color-pink);
  margin-bottom: -10px;
  font-size: 15px;
  width:100%;
  height: 10%; 
  position:absolute;
  left:0;
}

.footer i {
  margin-top: 18px;
  margin-left: 5px;
  color: var(--font-color-pink);
}
