* {
    box-sizing: border-box;
}

html, body {
    font-size: 1em;
    color: white;
    line-height: 1.6;
    /*margin: 0;*/
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    scroll-behavior: smooth;
    background-color: #2F2F2F;
    font-family: 'Open Sans', sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

.home {
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 40px;
    padding-top: 30px;
}

.description {
    flex-grow: 1;
    flex-basis: 300px;
    margin-bottom: 30px;
    text-align: center;
}

.mockup {
    flex-grow: 1;
    flex-basis: 300px;
    max-width: 300px;
    height: auto;
    margin: auto;
}

.header {
    font-family: 'Nova Square', cursive;
    color: white;
}


.header2 {
    font-family: 'Open Sans', sans-serif;
    color: white;
    font-weight: 300;
}

.icon_container {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free {
    display: none;
}

/* ABOUT */
.about {
    width: 90vw;
    margin: auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;

}

.google {
    max-width: 300px;
    margin-top: 5%;
}

/* Features */

.features {
    margin: auto;
    width: 90vw;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 10px auto;
    background-color: white;
}

.container .content {
    text-align: center;
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0); /* Fallback color */
    background: rgba(0, 0, 0, 0.5); /* Black background with 0.5 opacity */
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
    margin: 0px;
}

.fas {
    color: #2F2F2F;
    font-size: 100px;
    margin-top: 70px;
}

.center {
    display: flex;
    justify-content: center;
}

