/* UNIVERSAL STYLE  */

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

html {
    scroll-behavior: smooth;
}


/* NAVBAR  */

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
}

.navbar-brand {
    font-family: 'Lobster', cursive;
    font-size: 2rem;
    color: #000;
}

.navbar-brand:hover {
    color: #000;
}

.nav-link {
    font-family: 'Rubik', sans-serif;
    margin-left: 10px;
    margin-right: 10px;
    color: #000;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #000;
}

.search {
    font-family: 'Rubik', sans-serif;
    height: 40px;
    width: 80%;
    margin-right: -35px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    outline: none;
    border: 2px solid rgb(248, 26, 92);
}

.btn0 {
    height: 40px;
    width: 40%;
    outline: none;
    border: none;
    background-color: rgb(248, 26, 92);
    color: #fff;
    border-radius: 60px;
    font-weight: 700;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
}


/* MAIN SECTION  */

.main {
    background: url(/assets/images/lunchcopy.jpg) no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    height: 100vh;
    width: 100%;
}

.main h1 {
    font-size: 4rem;
    font-weight: 700;
}

.btn1 {
    height: 45px;
    width: 35%;
    border: none;
    outline: none;
    background-color: rgb(248, 26, 92);
    color: #fff;
    font-weight: 700;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
}

.btn1:hover {
    background: rgb(223, 14, 77);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

h1 {
    font-weight: 700;
}

.card:hover {
    box-shadow: -2px -1px 25px -4px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -2px -1px 25px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -2px -1px 25px -4px rgba(0, 0, 0, 0.75);
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.apple {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/assets/images/red.jpg) no-repeat;
    background-size: cover;
    height: 80vh;
    width: 100%;
}

.apple h1 {
    font-family: 'Lobster', cursive;
}

.news {
    background-color: #000;
    color: #fff;
}

.btn2 {
    height: 45px;
    width: 100px;
    background-color: #fff;
    margin-left: -2px;
    border: 2px solid #fff;
    font-weight: 600;
}

.news input {
    height: 45px;
    width: 55%;
    outline: none;
    background-color: #000;
    color: #fff;
    margin-top: 20px;
    font-weight: 600;
}

.news::placeholder {
    color: #fff;
}

.news p {
    margin: 0;
}

.fab {
    font-size: 2.5rem;
    padding-right: 5px;
}
