/* 
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

.custom_nav_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  color: #fff;
  padding: 10px;
}

ul {
  width:300px;
  display: flex;
  align-items:center;
  justify-content: space-between;
  padding: 5px;
  font-size: 20px;
}

li a {
   text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
ul li a:hover{
  background: #fff;
  color: black;
  padding: 5px;
  border-radius: 5px;
}

.logo {
  display: flex;
  align-items: center;
}

.search {
  padding: 10px;
}

input {
  padding: 5px;
  outline: none;
}

img {
  width: auto;
  height: 50px;
}

.main_container {
  height: 100vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  text-align: center;
}

button {
  height: 55px;
  width: 170px;
  border-radius: 10px;
  border: 2px solid white;
  font-size: 20px;
  font-weight: 500;
  margin:8px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
h2{
  margin:8px;
} */
