@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');

html, body {
    padding: 0;
    margin: 0;
    background-image: linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.75)),url('background.png');
    background-size: cover; 
}

@font-face {
    font-family: destiny;
    src: url(NeueHaasDisplayMediu.ttf)
}

* {
    box-sizing: border-box;
    font-family: destiny;
    color: #fff;
}

/* Removes the blue background and makes any selected text yellow */

::selection {
    background: none;
    color: #F4D103;
}

/* Class styling */

/* .mooveat {
    position: fixed;
    transform: translateX(400%);
    top: 20px;
}

.moovon {
    position: fixed;
    transform: translateX(392%);
    top: 8px;
} */

.line {
    position: fixed;
    width: 1.5px;
    height: 50px;
    background-color: #000;
    top: 15px;
    left: 150px;
}

.mooveat {
    position: fixed;
    width: 105px;
    height: 40px;
    top: 20px;
    left: 20px;
}

.moovon {
    position: fixed;
    height: 60px;
    width: 140px;
    left: 160px;
    top: 10px;
}

.main-header {
    font-size: 35px;
}

.nav {
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#location:hover {
    color: #F4D103;
    transition: 0.3s ease;
}

#location {
    transition: 0.3s ease;
    color: #000;
}

#facebook {
    /* transform: translateX(4460%); */
    transition: 0.3s ease;
    color: #000;
}

#instagram {
    /* transform: translateX(5170%); */
    transition: 0.3s ease;
    color: #000;
}

#facebook:hover, #instagram:hover {
    color: #F4D103;
    transition: 0.3s ease;
    
}

#email {
    color: #000;
    transition: 0.3s ease;
}

#email:hover {
    color: #F4D103;
    transition: 0.3s ease;
}

.nav ul {
    margin: 0;
}

.nav li {
    display: inline;
}

.nav a {
    padding: .6em;
    text-decoration: none;
    display: inline-block;
    transition: 0.4s;
}

.header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    font-size: 8vmin;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    animation: anim 2s;
}

@keyframes anim {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

/* Font Awesome icon styling (+ Healthier Choice icon on the bottom right) */

#hc {
    position: absolute;
    bottom: 1%;
    right: 0.5%;
    border: 2px solid #fff;
    border-radius: 200px;
    transition: transform .2s;
}

#hc:hover {
    transform: scale(1.1);
}

/* Hover animation for the Font Awesome icons */

@keyframes headerAnim {
    0% {opacity: 0%;}
    100% {opacity: 100%;}
}

