* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: sans-serif;
}

header a {
    text-decoration: none;
}

header {
    padding: 0 20px;
    height: 64px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: rgb(31, 31, 31);
}

#brand {
    display: flex;
    align-items: center;
}

ul {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

ul a {
    color: white
}

ul li {
    padding: 5px;
    margin-left: 10px;
}

ul li:hover {
    transform: scale(1.1);
    transition: 0.1s;
}

#download,
#contact,
#blog {
    border: 2px solid white;
    border-radius: 5px;
    padding: 5px 8px;
}

.img-appStoreFooter {
    padding-left: 2%;
    float: left;
}

.img-googlePlayFooter {
    padding-right: 2%;
    float: right;
}

.missionWrapper {
    margin: 5% 5% 5% 5%;
}

.img-mission {
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

.img-story {
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

.img-vision {
    display: block;
    margin: 0 auto;
    padding-top: 20px;
}

.mission h1 {
    padding: 30px 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: white;
    line-height: 35px;
    display: flex;
    justify-content: center;
}

.mission p {

    font-family: arial;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.storyWrapper {
    margin: 5% 5% 5% 5%;
}

.story h1 {
    padding: 30px 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: white;
    line-height: 35px;
    display: flex;
    justify-content: center;
}

.story p {

    font-family: arial;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

.visionWrapper {
    margin: 5% 5% 5% 5%;
}

.vision h1 {
    padding: 30px 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: white;
    line-height: 35px;
    display: flex;
    justify-content: center;
}

.vision p {

    font-family: arial;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
}

#footerLogos {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-appStoreFooter {
    float: left;
}

.img-googlePlayFooter {
    padding-right: 2%;
    float: right;
}

footer {
    border-top: 1px solid grey;
    margin: 5% 5% 5% 5%;
}

footer h2 {
    padding: 5% 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    color: white;
    line-height: 35px;
    display: flex;
    justify-content: center;
}

.rights {
    border-top: 1px solid grey;
    margin-top: 10%;
    padding-top: 5%;
    display: flex;
    justify-content: center;
}

.privacypolicy {
    color: white;
    padding-top: 5%;
    display: flex;
    justify-content: center;
    font-size: 14px;
}

.refs {
    margin-top: 5%;
    font-size: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    header {
        padding: 0 40px;
    }

    nav ul {
        gap: 20px;
    }

}