@import url('https://fonts.googleapis.com/css?family=Poppins:400,600,700,800,900');
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
  font-family: 'Poppins'!important;
}

/* HEADER */
header > div {
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid lightgray;
}
nav {
    width: 600px;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: black;
}
.blackHeart {
    width: 20px;
    margin-right: 1rem;
}

.header-bar {
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid lightgray;
    box-shadow: 10px 0 10px 0 #eee;
}
.header-bar img {
    width: 70px;
}
.header-bar form {
    background-color: rgba(0,0,0,.05);
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-bar form img {
    width: 20px;
    margin: 0 15px;
}
.header-bar form input {
    width: 100%;
    height: 41px;
    background-color: transparent;
    border: none;
    font-size: 1em;
}
.header-bar form button {
    border: none;
    background-color: #fb3e44;
    color: white;
    padding: 8px 10px;
    letter-spacing: 1px;
    font-family: inherit;
    font-size: 1em;
}
.header-bar a {
    text-decoration: none;
    color: #000;
}
.header-bar .join-btn {
    border: 1px solid #000;
    padding: 8px 20px;
}

/* GENERAL */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 600px;
}

/* SECTION 1 */
#presentation {
    background-color: rgba(232,217,217,.3);
}
#presentation h1 {
    font-size: 6em;
    margin: 0;
}
#presentation article {
    width: 40%;
    font-size: 1.55em;
    text-align: center;
    margin-top: -50px;
}
#presentation article p {
    margin: 0;
}
#presentation .presentation-links {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#presentation .presentation-links a {
    width: 46%;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    font-size: 1.3em;
    padding: 22px 0;

}
#presentation .presentation-links .plans-btn {
    background-color: #FB3B49;
    box-shadow: 8px 8px 0 rgba(251,59,73,.2);
    color: #fff;
}

/* SECTION 2 */
#best-option img {
    width: 250px;
}
#best-option h2 {
    font-weight: bold;
    font-size: 2.5em;
    font-style: italic;
    background-color: rgba(255,204,53,.4);
    transform: skew(9deg,0deg);
    padding: 0 30px;
    margin: 0;
}
#best-option article {
    width: 50%;
    text-align: center;
    margin-top: -50px;
    font-size: 1.1em;
}

/* SECTION 3 */
#features {
    
}
#features button {
    background-color: #000;
    font-family: inherit;
    font-size: 1.5em;
    color: #fff;
    border: 0;
    padding: 20px 10%;
    box-shadow: 8px 8px 0 rgba(128,83,35,.2);
}
.features-container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.feature {
    width: 20%;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.feature img {
    width: 50px;
    height: 50px;
}
.feature h3 {
    color: #ED1C24;
}
.feature p {
    font-size: 1.1em;
}
/*

color of the letters in each heading in this section: #ED1C24
"Create an Org" box shadow: 8px 8px 0 rgba(128,83,35,.2)
"Create an Org" letters color: white

*/