@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.eot');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: .4s ease-in-out;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    min-height: 100vh;
    font-size: 16px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
    text-decoration: none;
   color: #333;
}


nav {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.navigation-header {
  background-color: rgb(223, 40, 101);
  color: white;
  padding: 0 15px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
 

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
    border: 1px solid #bcb7b7;
}

.nav {
    padding: 10px 0;
    text-align: center;
}


.logo-container > a {
  color: ghostwhite;
  text-decoration: none;
  font-weight: 700;
  font-size: 26px;
}

.navigation-items {
  display: flex;
  gap:40px;
  color: white;
}


.navigation-items > a {
  color: ghostwhite;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: .4s ease-in-out;
}

.navigation-items > a:hover {
  color: white;
}


.hamburger {
  display: none;
  font-size: 20px;
  font-weight: 800;
  color: white;
}

.aboutme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.aboutme-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
}

.food-img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aboutme {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.dropdown-content { 
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}


/*Mob View*/ 
@media screen and (max-width:768px) {
  .hamburger {
    display: flex;
    cursor: pointer;
  }
  .hamburger #closeHam {
    display: none;
  }

  .navigation-items {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    right: 0;
    top: 58px;
    background-color: rgb(255, 39, 111);
    width: 100%;
    height: calc(100vh - 58px);
    padding-top: 60px;
    gap: 10vh;
  }

}