@import url(../fonts/stylesheet.css);

* {
    padding: 0;
    margin: 0;

}
*::selection {
    color: white;
    background-color: black;
}
body {
    background-color: black;
}

main {
    background-image: url(../images/hero.jpg)  ;
    background-repeat: no-repeat;
}
/* HERO */
#hero  {
    min-height: 80vh;
    color: white;
}
#hero .nav-link {
    color: white;
    font-family: 'Proxima Nova';
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 200px;
    scale: 1.6;
}

/* CONTACT */
#contact {
    background-color: white;
    min-height: 40vh;
    padding: 100px 0px;
}
#contact .heading {
    border-bottom: 1px solid gray;
    margin: 50px 0px;
}
#contact .btn {
    border-radius: 0px;
    background-color: #2ff4b2;
    padding: 20px 40px;
    border: none;
    font-size: 16px;
}
/* FOOTER */

footer span {
    color: #2ff4b2;
}
footer {

    background-color: #002d5a;
    color: white;
}
footer ul {
    display: inline-flex;
    list-style: none;
    padding: 10px 0;
    
}
footer li {
    padding: 0px 10px;
}
footer a {
    color: white;
    text-decoration: none;
}



