* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.nav {
  height: 60px;
  background-color: #131921;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: white;
}

.logo-img {
  background-image: url('Aamazon-logo.png');
  background-size: cover;
  height: 30px;
  width: 100px;
}

.box {
  padding: 5px;
  cursor: pointer;
}

.box:hover {
  border: 1px solid white;
}

.addr {
  display: flex;
  flex-direction: column;
}

.addr-icon {
  display: flex;
  align-items: center;
}

.line1 {
  font-size: 12px;
  color: #ccc;
}

.line2 {
  font-size: 14px;
  font-weight: bold;
}

.search {
  display: flex;
  flex-grow: 1;
  margin: 0 10px;
  height: 40px;
}

.s-select {
  background: #f3f3f3;
  border: none;
  padding: 5px;
}

.s-input {
  flex: 1;
  border: none;
  padding: 5px;
}

.s-btn {
  background: #febd69;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.s-btn:hover {
  background: #f90;
}

.bold {
  font-weight: bold;
  font-size: 14px;
}

.cart i {
  font-size: 24px;
}

.panel {
  height: 40px;
  background: #232f3e;
  display: flex;
  align-items: center;
  color: white;
  padding: 0 20px;
}

.menu {
  font-weight: bold;
  align-items: center;
  margin-right: 25px;
}

.links {
  display: flex;
  flex: 1;
}

.links p {
  margin: 0 10px;
  cursor: pointer;
}

.links p:hover {
  text-decoration: underline;
}

.deal {
  font-weight: bold;
  color: #febd69;
}

.hero {
  background-image: url('image.jpg');
  background-size: cover;
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero-msg {
  color: black;
  padding: 10px;
  margin-bottom: 20px;
  width: 90%;
  text-align: center;
  font-size: 14px;
}

.hero-msg a {
  color: #007185;
  text-decoration: none;
}

.hero-msg a:hover {
  text-decoration: underline;
}

.shop {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  background: #e3e6e6;
  padding: 20px 0;
}

.card {
  background: white;
  width: 23%;
  margin: 10px 0;
  padding: 20px;
}

.c-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.c-img {
  height: 250px;
  background-size: cover;
  margin-bottom: 10px;
}

.card p {
  color: #007185;
  cursor: pointer;
}

footer {
  margin-top: 20px;
  color: white;
}

.f-top {
  background: #37475a;
  text-align: center;
  padding: 15px;
  cursor: pointer;
}

.f-top:hover {
  background: #485769;
}

.f-links {
  background: #232f3e;
  display: flex;
  justify-content: space-evenly;
  padding: 20px;
}

.f-links ul {
  list-style: none;
}

.f-links ul p {
  font-weight: bold;
  margin-bottom: 10px;
}

.f-links a {
  display: block;
  color: #ddd;
  font-size: 14px;
  margin: 5px 0;
  cursor: pointer;
}

.f-links a:hover {
  text-decoration: underline;
}

.f-logo {
  background: #232f3e;
  text-align: center;
  padding: 20px;
}

.f-logo .logo-img {
  margin: 0 auto;
}

.f-bottom {
  background: #131921;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  color: #ccc;
}

.f-pages a {
  margin: 0 10px;
  cursor: pointer;
}

.f-pages a:hover {
  text-decoration: underline;
}
