@import url('https://fonts.googleapis.com/css2?family=Mynerve&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');

:root{
    --especial: 'Mynerve', cursive;
    --normal: 'Open Sans', sans-serif;
}

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

html{
    min-height: 100%;
}

body{
    background: url(img/background.jpeg);
    background-position: center left;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

header{
    padding: 20px;
}

header p{
    font-family: var(--especial);
    font-size: 1.6em;
    text-shadow: 0.5px 1px 1px #000;
    color: #fff;
}

main{
    padding: 100px 20px;
}

main h1{
    font-family: var(--especial);
    font-size: 3.3em;
    color: #fff;
}

main p{
    font-family: var(--normal);
    font-size: 1em;
    padding: 10px 0px;
    color: #fff;
}

main div.informacoes{
    margin: 25px 0px;
    width: 335px;
}

main div.informacoes input{
    border: 0px;
    border-radius: 10px;
    padding: 10px 45px;
    color: #000;
    text-align: left;
}

main div.informacoes input#inome{
    padding: 10px 20px;
    width: 100%;
}

main div.informacoes input#iemail{
    padding: 10px 20px;
}

main div.informacoes input#botao{
    cursor: pointer;
    background: transparent;
    border: 2px solid #fff;
    color: #ffff;
    padding: 10px 20px;
}

main div.informacoes input#botao:hover{
    background-color: #ffffff54;
}

main div.informacoes div.divisao{
    padding: 20px 0px 0px 0px;
}

main div.redes{
    cursor: pointer;
    padding: 10px 0;
}

main div.redes i{
    font-size: 1.7em;
    color: #fff;
    padding: 0px 5px;
}

main div.redes i:hover{
    color: #000;
}

footer{
    margin: 70px 0px;
}

@media screen and (max-width: 400px){
    main div.informacoes input#inome{
        width: 70%;
    }

    main div.informacoes div.divisao{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}