/* css reset start here */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Open Sans", sans-serif;
}

p {
  font-size: 1.6rem;
  line-height: 1.5;
}

img {
  width: 100%;
  display:block;
}

.container{
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
/* css reset ends here */
/****************************************************************************************/
.main{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url(images/business-meeting-image.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 0;
}

.main::after{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: -1;
}
.coming-soon {
    display:flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color:white;
    flex-direction: column;
    height:100vh;
    width:80%;
    margin:0 auto;
   z-index: 2;
}

.coming-soon > * {
    text-align: center;
}

.coming-soon h1 {
    font-size: 4.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 0 4px #fff;
    margin-bottom: 1rem;
}

.coming-soon h2{
    font-size: 1.8rem;
    font-weight: 700;
}
.coming-soon > p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    margin: 2rem 0;
}

.box {
width: 10rem;
margin: 0 5px;
background: rgba(255,255,255,0.2);
}

.box div {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 5px;
    padding: 1rem 0;
}

.box p {
    font-weight: 600p;
    text-transform: uppercase;
    background: orangered;
    padding: 5px 0;
}

.newsletter p {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

form > * {
    padding: 5px;
    font-size: 1.4rem;
    color:white
}

form input {
    border:2px solid white;
    border-radius: 3px 0 0 3px;
    background:transparent;
}

::placeholder {
  color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
}


form button {
    border: 2px solid orangered;
    border-radius: 0, 3px 3px 0;
background: orangered;
text-transform: uppercase;
}

@media screen and (max-width: 600px) {
    .coming-soon{
        width:100%;
    }
}
