body {
    margin: 0;
    padding: 0;
}

main {
    padding-bottom: 50px;
    padding-top: 70px;
    font-family: "Libre Franklin", sans-serif;
}

#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#launch-text {
    text-align: center;
    margin-top: 50px;
    color: #151f29;
    font-size: 1.9rem;
}

span {
    color:  #969696;
}

#subscribe-text {
    text-align: center;
    color: #151f29;
    margin-bottom: 50px;
}

form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    width: 320px;
    margin-left: auto;
    margin-right: auto;
}

#email-flex {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.hide {
    display: none;
}

.warning {
    color: hsl(354, 100%, 66%);
    font-style: italic;
    font-size: 0.7rem;
    padding-left: 20px;
    margin-bottom: 0;
}

input {
    width: 100%;
    padding: 15px 30px;
    box-sizing: border-box;
    border-radius: 25px;
    border: 1px solid #c2d3ff;
}

input::placeholder {
    color: #c2d3ff;
    font-weight: 200;
}

input:focus {
    outline: 0;
    border: 1px solid #969696;
}

button {
    padding: 15px 30px;
    color: white;
    background-color: #4f7df3;
    box-sizing: border-box;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    box-shadow: 4px 4px 4px #c2d3ff;
    cursor: pointer;
    transition: background-color 0.5s;
}

button:hover {
    background-color: #6a91f3;
}

#illustration-img {
    margin-top: 60px;
    margin-bottom: 150px;
    width: 450px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#icons-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 160px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

.fa.fa-facebook, .fa.fa-twitter, .fa.fa-instagram {
    font-size: 20px;
    border-radius: 50%;
    border: 1px solid #c2d3ff;
    background-color: white;
    height: 20px;
    width: 20px;
    color: #4f7df3;
    padding: 10px;
    text-align: center;
}

.fa.fa-facebook:hover, .fa.fa-twitter:hover, .fa.fa-instagram:hover {
    color: white;
    background-color: #4f7df3;
}

#copyright {
    text-align: center;
    color: #969696;
    font-size: 0.7rem;
}


@media screen and (min-width: 600px) {
    form {
        flex-direction: row;
        width: 500px;
    }

    input {
        width: 100%;
        border-radius: 30px;
    }

    button {
        width: 200px;
    }

    #email-flex {
        position: relative;
    }

    .warning {
        position: absolute;
        top: 45px;
    }
}