body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
  background-color: #f7f7f5;
  background-image: radial-gradient(rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.logo {
  font-weight: 600;
  letter-spacing: 1px;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 30px 60px;
  border-bottom: 1px solid #eee;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 1px;
  background: #e60000;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* CONTACT LAYOUT */

.contact {
  max-width: 700px;
  margin: 0 auto;
  padding: 120px 40px;
  position: relative;
}

/* RED ACCENT BLOCK */

.box-accent {
  width: 90px;
  height: 90px;
  background: #e60000;
  position: absolute;
  top: 110px;
  right: 40px;
  opacity: 0.9;
}

/* TITLE */

.contact h1 {
  font-size: 54px;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: -1px;
}

/* INFO LIST */

.info p {
  font-size: 16px;
  margin: 12px 0;
  color: #333;
}

.info span {
  color: #999;
  display: inline-block;
  width: 110px;
}

@media screen and (max-width: 430px) {

  /* NAV */
  nav {
    padding: 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  nav a {
    margin-left: 0;
    margin-right: 15px;
    font-size: 15px;
  }

  .logo {
    font-size: 14px;
  }

  /* CONTACT CONTAINER */
  .contact {
    padding: 80px 18px;
  }

  /* TITLE */
  .contact h1 {
    font-size: 32px;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
  }

  /* INFO */
  .info p {
    font-size: 14px;
    margin: 10px 0;
  }

  .info span {
    width: 90px;
    font-size: 13px;
  }

  /* RED BLOCK */
  .box-accent {
    width: 60px;
    height: 60px;
    top: 20px;
    right: 18px;
    opacity: 0.85;
  }
}