* {
  padding: 0;
  margin: 0;
}

p {
  color: rgb(248, 248, 249);
  font-size: 36px;
}

header {
  background-color: #080808;
  height: 100px;
  width: 100%;
}
/*logo*/
h1 {
  position: relative;
  color: white;
  left: 120px;
  top: 0px;
  line-height: 100px;
  /* background-image: url(images/logo.png); */
  /* background-repeat: no-repeat;
    background-position: center; */
  width: 300px;
  /* text-indent: -9999px; */
}

a:hover {
  text-decoration: underline;
}
li {
  display: inline;
  margin-right: 0px;
  /* margin-right: 6vw; */
  font-size: 18px;
}
/*右邊 home標題排版*/
ul {
  list-style: none;
  position: absolute;
  right: 5vw;
  top: 0;
  line-height: 80px;
  list-style: none;
  background: #050505;
}
ul li {
  display: inline-block;
  position: relative;
}
ul li a {
  text-align: center;
  display: block;
  padding: 10px 35px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}
ul li ul.dropdown li {
  display: block;
  text-align: center;
}
/* 調整下拉選單的樣式 */
ul li ul.dropdown {
  width: 100%;
  background: #050505;
  position: absolute;
  top: 100%; /* 使下拉選單顯示在父項的正下方 */
  left: 0;
  z-index: 999;
  display: none;
}
ul li a:hover {
  background: #d57e2d;
}
/* 當滑鼠移到父項時顯示下拉選單 */
ul li:hover ul.dropdown {
  display: block;
}
/* 調整下拉選單項目的樣式 */
ul li ul.dropdown li a {
  padding: 10px; /* 增加內邊距 */
  text-align: center;
}

/* 調整子選單的樣式 */
ul li ul.dropdown li ul.submenu {
  position: absolute;
  top: 0;
  left: 100%; /* 子選單顯示在右側 */
  display: none;
  background: #050505;
  width: 150px;
}
/* 當滑鼠移到 "Angst" 時顯示子選單 */
ul li ul.dropdown li:hover ul.submenu {
  display: block;
}

.news {
  background-color: antiquewhite;
  color: rgb(247, 247, 247);
  height: 85vh;
  background-image: url("images/3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.news h2 {
  font-size: 60px;
}
.news p {
  color: #070707;
  font-size: 10px;
  margin: 25px 0;
}
.slogan {
  background-color: #485652;
  color: white;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  line-height: 1.8em;
}

footer {
  background-color: #000000;
  color: white;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  line-height: 1em;
}

.shop img {
  width: 50%;
}
.shop {
  display: flex;
}
.info {
  display: flex;
  width: 50%;
  background-color: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000000;
  text-align: center;
}
.shop h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.info p {
  text-align: center;
  color: #070707;
  font-size: 30px;
  margin: 25px 0;
}
