* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-bottom: 16px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 2px solid black;
}

.logo {
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  border: 1px solid black;
  padding: 2px 10px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
  text-transform: lowercase;
}

nav ul li a {
  text-decoration: none;
  color: black;
  position: relative;
}

nav ul li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: #f56b88;
}

.hero {
  background-image: linear-gradient(
      to bottom,
      rgba(255, 64, 188, 0.5),
      rgba(255, 64, 77, 0.5)
    ),
    url(../images/inter.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    max-width: 980px;
    height: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-text h1 {
  position: absolute;
  bottom: 0;
  font-size: 100px;
  color: #ff0055;
}

.description {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px;
  line-height: 1.7;
  font-size: 14px;
  color: #444;
}

footer {
  background-color: #ee4367;
  color: white;
  padding: 40px;
  text-align: center;
}

.footer-logo {
  font-weight: bold;
  font-size: 20px;
  border: 1px solid #fff;
  display: inline-block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

address {
  margin: 10px 0;
  line-height: 1.5;
  font-style: normal;
}

.newsletter {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 2px;
  background: #f56b88;
  color: #fff;
}

.newsletter button {
  background: white;
  border: none;
  padding: 10px 20px;
  color: #ee4367;
  cursor: pointer;
}

.social-icons {
  font-size: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.copyright {
  font-size: 12px;
  margin-top: 20px;
  color: #ffd1da;
}
