* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}

body {
  min-height: 100vh;
  background-color: rgb(245, 245, 245);
}

/* HEADER */

.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  width: 100%;
}

.h-logo img {
  width: auto;
  height: 200px;
}

.h-info {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.h-info h1 {
  font-size: 3rem;
  text-shadow: 1.5px 1.5px rgb(0, 0, 0);
  color: rgb(240, 130, 100);
}

.h-info p {
  font-weight: bold;
  line-height: 1.5rem;
}

@media (max-width: 730px) {
  .head {
    flex-direction: column;
  }

  .h-logo img {
    height: 150px;
  }

  .h-info {
    gap: 0;
    padding: 0;
  }

  .h-info h1 {
    display: none;
  }
}

/* NAV */

.nav-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 5%;
  width: 100%;
  background-color: rgb(200, 40, 40);
}

.nav-contact span {
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.nav-menu-hide {
  display: none;
  padding: 1rem 5%;
  width: 100%;
  background-color: rgb(0, 0, 0);
}

.nav-menu-hide span {
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.nav-menu {
  padding: 1rem 5%;
  width: 100%;
  background-color: rgb(0, 0, 0);
}

.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.menu a {
  text-decoration: none;
  font-weight: bold;
  color: rgb(255, 255, 255);
}

.menu a:hover {
  text-decoration: underline;
}

@media (max-width: 730px) {
  .nav-menu-hide {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .nav-contact,
  .menu {
    flex-direction: column;
  }
}

/* FIXED ICONS */

.wsp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.fb-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 100;
}

.wsp-icon img,
.fb-icon img {
  width: auto;
  height: 55px;
  display: block;
}

/* FOOTER */

footer {
  text-align: center;
  width: 100%;
  padding: 1rem 5%;
  background-color: rgb(200, 40, 40);
}

footer span {
  color: rgb(255, 255, 255);
}
