html {
    font-family: Helvetica, Arial, sans-serif;
    color: #fff;
    font-size: 16px;;
    line-height: 1.4;
}

body {
    height: 100vh;
    background-color: #a1c9c7;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.logo {
    width: 160px;
}

.launch {
    font-size: 17px;
}

p {
    text-align: center;
    margin: 10px 0;
}

.flex {
    display: flex;
    flex-direction: column;
}

.flex p {
    margin: 20px 30px;
    max-width: 320px;
}

.icons {
    display: flex;
}

.icons a {
    display: block;
    width: 50px;
    height: 50px;
    margin: 10px 20px;
    cursor: pointer;
}


@media screen and (max-height: 700px) {
   body {
       justify-content: start;
       padding-top: 20px;
   }
}

@media screen and (min-width: 768px) {
    .logo {
        width: initial;
    }

    .flex {
        flex-direction: row;
    }

    .flex p {
        margin: 40px 30px;
        text-align: justify;
    }

    .icons a {
        width: 40px;
        height: 40px;
    }
}