*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Segoe UI", sans-serif;
}

/* HERO BACKGROUND */

.hero{
    height:100vh;
    /* background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?q=80&w=2070"); */
    background-color: black;
    background-size:cover;
    background-position:center;
    color:white;
    display:flex;
    flex-direction:column;
}

/* NAVBAR */

.nav{
    display:flex;
    justify-content:space-between;
    padding:30px 60px;
    letter-spacing:2px;
}

.logo{
    font-weight:600;
    opacity:0.9;
}

.menu a{
    color:white;
    margin-left:40px;
    text-decoration:none;
    opacity:0.7;
    transition:0.3s;
}

.menu a:hover{
    opacity:1;
}

/* CENTER CONTENT */

.content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.icon{
    font-size:60px;
    margin-bottom:30px;
    opacity:0.9;
    /* animation:pulse 2s infinite; */
}
@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.05);}
    100%{transform:scale(1);}
}

.title{
    font-size:90px;
    letter-spacing:40px;
    font-weight:400;
    /* animation:pulse 5s infinite; */
}

.title span{
    color:#ff4d5a;
    font-weight:500;
}

.tagline{
    margin-top:20px;
    letter-spacing:4px;
    font-size:20px;
    opacity:0.7;
    /* animation:pulse 5s infinite; */
}

/* NOTIFY BAR */

.notify{
    margin-top:50px;
    display:flex;
    width:500px;
    max-width:90%;
}

.notify input{
    flex:1;
    padding:16px;
    border:none;
    outline:none;
    font-size:14px;
}

.notify button{
    padding:16px 28px;
    border:none;
    background:#ff4d5a;
    color:white;
    letter-spacing:1px;
    cursor:pointer;
    transition:0.3s;
}

.notify button:hover{
    background:#ff2c3d;
}

/* MOBILE */

@media(max-width:700px){

    .title{
        font-size:42px;
        letter-spacing:12px;
    }

    .nav{
        padding:20px;
    }

    .menu a{
        margin-left:20px;
    }

}