*{
    padding: 0;
    margin: 0;
}

body{
    background-color: #f2d7d9;
    font-family:'Poppins', sans-serif;
}

.nav {
  background-color: #40999e;
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* space between logo and links */
  align-items: center;
  padding: 10px 20px;
}

/* LOGO SECTION */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.logo span {
  font-size: 22px;
  font-weight: bold;
  color: #ebebeb;
  font-family: 'Poppins', sans-serif;
}

/* NAV LINKS */
.links a {
  text-decoration: none;
  margin: 0 10px;
  font-size: 20px;
  color: #d4dcdd;
}

.links a:hover {
  text-decoration: underline;
}

.main{
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: beige;
}

.main-content{
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
    background-color: #151e1f;
    background-image: url("./pics/bgimgsearch.jpg");
    background-size: cover;
    height: 100%;
}


.search{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(45, 119, 122, 0.6);
    border: solid black 1px;
    border-radius: 4px;
    max-width: fit-content;
    padding: 32px;
}

.search h1{
    font-size: 3em;
    margin-bottom: 30px;
    color: #f2f3f3;
}

.search input{
    width: 50em;
    box-sizing: border-box;
    border: 2px solid black;
    padding : 12px 0px 12px 6px;
    border-radius: 6px;
}


