/* styles.css */

/* Reset default margin and padding */
@import url(https://fonts.bunny.net/css?family=bungee-shade:400);
@import url(https://fonts.bunny.net/css?family=big-shoulders-stencil-text:400);
@import url(https://fonts.bunny.net/css?family=dotgothic16:400);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f0f0f0;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Bungee Shade', display;
}
.location{font-family: 'Big Shoulders Stencil Text', display;
}
.weather {
    font-size: 1rem;
}

/* Main content styles */
main {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: 'DotGothic16', sans-serif;
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 75%;
  }

  .search-box {
    padding: 5px 10px;
    width: 90%;
    height: 50%;
    border-radius: 4px;
    outline: none;
    border: 6px dashed blue;
  }

  .search-button {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: -30px;
  }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #defff4; /* Light blue background */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
  }

  .nav-item {
    text-align: center;
    flex-grow: 1;
  }

  .nav-item img {
    width: 22px; /* Adjust as needed */
    height: 22px; /* Adjust as needed */
  }

  .nav-item span {
    display: block;
    font-size: 12px; /* Adjust as needed */
  }