.hero{
  position: relative;
  background-color: #000;
  height: 100vh;
  z-index: 1;
}
.hero-container{
  display: flex; flex-direction: row-reverse; justify-content: space-evenly; align-items: center;
  height: 100%;
}
.hero-img img{
  width: 30rem; /* 500px */
}
.hero-title{
  font-family: "Pixelify Sans", sans-serif; font-size: 3rem; /* 50px */
  color: #fff;
  text-align: center;
  width: 500px;
  letter-spacing: 5px;
  padding: 0 30px;
}

.address-container {
  display: flex; 
  flex-direction: column; 
  align-items: center;
  border: 2px transparent snow;
  background: #000;
  padding: 15px 0; /* 0.781vw => 15px */
}

.h-address {
  font-family: "Pixelify Sans", sans-serif; 
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.address-box {
  display: flex; 
  flex-direction: row; 
  align-items: center;
  border: 1px solid #ffffff; 
  border-radius: 2px; /* 0.104vw => 2px */
}

.p-address {
  font-family: "Roboto", sans-serif; 
  font-size: 18px; /* 0.938vw => 18px */
  color: #ffffff;
  padding: 0 5px; /* 0.26vw => 5px */
}

.btn-address {
  font-family: "Roboto Condensed", sans-serif; 
  font-size: 20px; /* 1.042vw => 20px */
  font-weight: 900;
  background: #000;
  color: #fff;
  border: none;
  border-left: 1px solid #fff;
  padding: 15px; /* 0.781vw => 15px */
  cursor: pointer;
}