header {
  background-color: #fff;
  padding: 20px 0;
  /*box-shadow: 0 2px 4px rgba(0,0,0,.1);*/
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.nav-item {
  list-style: none;
  margin-left: 20px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #00c8ff;
}

.container {
  width: 1000px;
  margin: 0 auto;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url(https://dummyimage.com/1920x1080/000/fff);
  background-size: cover;
  background-position: center;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-text button {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-text {
    width: 80%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hero-text h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-text button {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .hero-text {
    width: 80%;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
 /* レイアウトの調整 */
 .wrapper {
  display: flex;
  justify-content: space-between;
  margin: 20px;
}

/* 左側のコンテンツ */
.left-content {
  flex-basis: 40%;
  margin-right: 20px;
}

.left-content img {
  width: 100%;
}

.left-content video {
  width: 100%;
}

/* 右側のコンテンツ */
.right-content {
  flex-basis: 50%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .wrapper {
    flex-direction: column;
  }

  .left-content,
  .right-content {
    flex-basis: 100%;
    margin: 0;
  }
}

.wrapper {
  width: 1000px;
  margin: 0 auto;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.contact {
  width: 50%;
  margin: 10% auto;
}

.flex_test-box {
  background-color: #000000;     /* 背景色指定 */
  padding:  10px;             /* 余白指定 */
  display: flex;              /* フレックスボックスにする */
  justify-content:center;
}

.flex_test-item {
  padding: 50px;
  color:  #000000;               /* 文字色 */
  margin:  10px;              /* 外側の余白 */
  border-radius:  5px;        /* 角丸指定 */
  width: 50%;                 /* 幅指定 */
}

サンプルコードのCSS
以下のCSSは、サンプルコードのHTMLをベースに、基本的なスタイルを適用したものです。

CSS
/* フッター全体のスタイル */
.footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

/* コンテナのスタイル */
.container {
  max-width: 960px;
  margin: 0 auto;
}

/* コピーライトのスタイル */
.copyright {
  text-align: center;
  font-size: 12px;
}

/* フッターメニューのスタイル */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  display: inline-block;
  margin-right: 10px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-menu a:hover {
  color: #ddd;
}

/* ソーシャルメディアアイコンのスタイル */
.social-media {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer {
  text-align: center;
}

.footer .container {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
  }
}

.social-media li {
  display: inline-block;
  margin-right: 10px;
}

.social-media a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.social-media a:hover {
  color: #ddd;
}

/* メディアクエリ */
@media (max-width: 768px) {
  .footer-menu {
    text-align: center;
  }

  .social-media {
    text-align: center;
  }
}