@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  {
    /* background: url(../images/hero.jpg) center/cover no-repeat; */
    /* background-color: black; */
    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;
}
.hero .btn {
    background-color: #2ff4b2;
    color: white;
    border-radius: 60px;
    border: none;
    scale: 0.8;
    padding: 15px 30px;
}
/* ABOUT */
#about {
    background-color: white;
    font-family: 'Sofia';
    padding: 100px 0;

}
#about .faq {
    padding: 40px 0px;
}
#about h2{
    color: #002d5a;
}
#about  img {
    height: 300px;
    width: 300px;
    object-fit: contain;
}

/* 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;
}


