/* ------------------------------------------*/
/* BASIC SETUP */
/* ------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html,
body {
    background-color: #000;
    color: #ffffff;
    font-family: "Lato", "Arial", sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

.clearfix {zoom: 1}
.clearfix:after {
    content: '.';
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}


.hero-text-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 5px;
    font-size: 25px;
}
li {
    text-decoration: none;
}
#imie {
    display: flex;
    justify-content: center;
    font-size: 20px;
}
#email {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    font-size: 18px;
}
#soon {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    font-size: 15px;
}
.container {
    margin: auto;
    max-width: 1100px;
    overflow: auto;
    padding: 0 20px;
}
#studio {
    display: flex;
    justify-content: center;
    margin-top: 200px;
    margin-bottom: 20px;
}

/* Navigation Bar */
#navbar {
    color: #fff;
    overflow: auto;
    height: 50px;
}
#navbar a {
    color: #fff;
}

#navbar h1 {
    float: left;
    padding-top: 20px;
}

#navbar ul {
    list-style: none;
    float: right;
}

#navbar ul li {
    float: left;
    margin-top: 10px;
}
#navbar ul li a {
    margin-left: 20px;
}
#navbar i {
    padding-left: 10px;
}
/* #navbar ul li a {
    display: block;
    padding: 20px;
    text-align: center;
} */


::selection {
    color: #000;
    background: #fff;
  }

/* Text shadow effect */
.text-reflect, .text-reflect:before, .text-reflect span {
    display: block;
    margin: 0;
    padding: 0;
  }
  
  .text-reflect, .text-reflect:before, .text-reflect:after {
    position: relative;
  }
  
  .text-reflect {
    top: -60px;
  }
  
  .text-reflect:before {
    content: 'ARREDAMENTO';
    top: 105px;
    transform: scale(1, -1);
    backface-visibility: visible; 
    z-index: 1;
  }
  
  .text-reflect:after {
    content: '';
    display: block;
    top: -10px;
    left: 0;
    width: 100%;
    height: 60px; 
    background-image: linear-gradient(to bottom, rgba(83, 83, 83, 0.052) 1%, rgb(0, 0, 0) 40%);
    z-index: 2;
  }

  /* RESPONSYWNOSC */

  /* Smartphones */
  @media(max-width: 500px){
    .hero-text-box {
        font-size: 15px;
        text-align: center;
    }
    .text-reflect:before {
        content: 'ARREDAMENTO';
        top: 65px;
        transform: scale(1, -1);
        backface-visibility: visible; 
        z-index: 1;
      }
    #studio {
        display: flex;
        justify-content: center;
        margin-top: 100px;
        margin-bottom: 20px;
    }
}
