@import url('https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@100..1000&family=Dancing+Script:wght@400..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Parkinsans:wght@300..800&family=Playwrite+AU+VIC+Guides&family=Playwrite+CO+Guides&family=Playwrite+ES+Deco+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Revolution&family=Raleway:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
}

.container {
  height: 100vh;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 100px auto 100px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: red;
  padding: 20px;
}
.logo-image {
  padding: 40px;
}

.menu-item {
  margin: 0 20px;
}

.menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.section-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
}
.h1 {
  font-size: 40px;
}

.tag {
  background-color: yellow;
}

.section-2 {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 20px 0;
}

.section-m {
  width: 100vw;
  display: flex;
  justify-content: center;
}

.section-3 {
  background-color: blue;
  padding: 10px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  max-width: 450px;
}

.section-3 a {
  color: white;
  text-decoration: none;
}

.footer {
  margin: 20px 0;
  background-color: rgb(211, 104, 23);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  gap: 10px;
  padding-top: 10px;
}

.footer-social-link {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 10px;
}

.footer-social-link a {
  text-decoration: none;
  color: white;
}
